nixpkgs/pkgs/applications/blockchains/namecoin/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.1 KiB
Nix
Raw Normal View History

{ 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 = "22.0";
src = fetchFromGitHub {
owner = "namecoin";
repo = "namecoin-core";
rev = "nc${version}";
2022-02-12 17:17:39 +00:00
sha256 = "sha256-Z3CLDe0c4IpFPPTie8yoh0kcuvGmiegSgl4ITNSDkgY=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
2018-08-10 12:57:43 +00:00
hexdump
];
buildInputs = [
openssl
boost
libevent
db4
miniupnpc
eject
] ++ lib.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 = with lib; {
description = "Decentralized open source information registration and transfer system based on the Bitcoin cryptocurrency";
homepage = "https://namecoin.org";
license = licenses.mit;
2020-11-09 08:41:49 +00:00
maintainers = with maintainers; [ infinisil ];
platforms = platforms.linux;
};
}