nixpkgs/pkgs/applications/blockchains/namecoin.nix

49 lines
1.1 KiB
Nix
Raw Normal View History

2019-01-01 16:19:07 +00:00
{ stdenv, fetchFromGitHub, openssl, boost, libevent, autoreconfHook, db4, miniupnpc, eject, pkgconfig, qt4, protobuf, qrencode, hexdump
, withGui }:
with stdenv.lib;
stdenv.mkDerivation rec {
2020-06-14 23:00:23 +00:00
version = "nc0.20.0";
name = "namecoin" + toString (optional (!withGui) "d") + "-" + version;
src = fetchFromGitHub {
owner = "namecoin";
repo = "namecoin-core";
rev = version;
2020-06-14 23:00:23 +00:00
sha256 = "115nlsq5g169mj4qjmkhxx1bnx740871zqyng9zbm2y4i0xf71c4";
};
nativeBuildInputs = [
autoreconfHook
pkgconfig
2018-08-10 12:57:43 +00:00
hexdump
];
buildInputs = [
openssl
boost
libevent
db4
miniupnpc
eject
] ++ optionals withGui [
qt4
protobuf
2019-01-01 16:19:07 +00:00
qrencode
];
2018-08-10 12:57:43 +00:00
enableParallelBuilding = true;
configureFlags = [
"--with-boost-libdir=${boost.out}/lib"
];
meta = {
description = "Decentralized open source information registration and transfer system based on the Bitcoin cryptocurrency";
homepage = "https://namecoin.org";
license = licenses.mit;
maintainers = with maintainers; [ doublec AndersonTorres infinisil ];
platforms = platforms.linux;
};
}