forked from mirrors/nixpkgs
58bc9d9e7d
Haven't used namecoin in years and don't intend to ever use it again :)
48 lines
1 KiB
Nix
48 lines
1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, openssl, boost, libevent, autoreconfHook, db4, miniupnpc, eject, pkg-config, qt4, protobuf, qrencode, hexdump
|
|
, withGui }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "namecoin" + lib.optionalString (!withGui) "d";
|
|
version = "24.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "namecoin";
|
|
repo = "namecoin-core";
|
|
rev = "nc${version}";
|
|
sha256 = "sha256-DSUYqNHgPsHVwx3G83pZdzsTjhX2X2mMqt+lAlIuGp0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
hexdump
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
boost
|
|
libevent
|
|
db4
|
|
miniupnpc
|
|
eject
|
|
] ++ lib.optionals withGui [
|
|
qt4
|
|
protobuf
|
|
qrencode
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Decentralized open source information registration and transfer system based on the Bitcoin cryptocurrency";
|
|
homepage = "https://namecoin.org";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|