Merge pull request #170957 from SuperSandro2000/namecoin
This commit is contained in:
commit
ab2dbe2999
1 changed files with 5 additions and 6 deletions
|
@ -1,15 +1,14 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, openssl, boost, libevent, autoreconfHook, db4, miniupnpc, eject, pkg-config, qt4, protobuf, qrencode, hexdump
|
{ lib, stdenv, fetchFromGitHub, openssl, boost, libevent, autoreconfHook, db4, miniupnpc, eject, pkg-config, qt4, protobuf, qrencode, hexdump
|
||||||
, withGui }:
|
, withGui }:
|
||||||
|
|
||||||
with lib;
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "namecoin" + optionalString (!withGui) "d";
|
pname = "namecoin" + lib.optionalString (!withGui) "d";
|
||||||
version = "nc22.0";
|
version = "22.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "namecoin";
|
owner = "namecoin";
|
||||||
repo = "namecoin-core";
|
repo = "namecoin-core";
|
||||||
rev = version;
|
rev = "nc${version}";
|
||||||
sha256 = "sha256-Z3CLDe0c4IpFPPTie8yoh0kcuvGmiegSgl4ITNSDkgY=";
|
sha256 = "sha256-Z3CLDe0c4IpFPPTie8yoh0kcuvGmiegSgl4ITNSDkgY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -26,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||||
db4
|
db4
|
||||||
miniupnpc
|
miniupnpc
|
||||||
eject
|
eject
|
||||||
] ++ optionals withGui [
|
] ++ lib.optionals withGui [
|
||||||
qt4
|
qt4
|
||||||
protobuf
|
protobuf
|
||||||
qrencode
|
qrencode
|
||||||
|
@ -38,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||||
"--with-boost-libdir=${boost.out}/lib"
|
"--with-boost-libdir=${boost.out}/lib"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "Decentralized open source information registration and transfer system based on the Bitcoin cryptocurrency";
|
description = "Decentralized open source information registration and transfer system based on the Bitcoin cryptocurrency";
|
||||||
homepage = "https://namecoin.org";
|
homepage = "https://namecoin.org";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
Loading…
Reference in a new issue