about summary refs log tree commit diff
path: root/pkgs/applications/blockchains/namecoin
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-27 15:31:23 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-28 13:29:10 +0200
commit06a2b9fa9522fb9b52f5dc569a44a3c99f6a6838 (patch)
tree2c225fd97e63b775b742b9f5b48b0591199156ad /pkgs/applications/blockchains/namecoin
parentabce989b6c9a5ce4fa2951e821978b84efd7d018 (diff)
pkgs/applications/blockchains: move packages into subdirs
Diffstat (limited to 'pkgs/applications/blockchains/namecoin')
-rw-r--r--pkgs/applications/blockchains/namecoin/default.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/applications/blockchains/namecoin/default.nix b/pkgs/applications/blockchains/namecoin/default.nix
new file mode 100644
index 0000000000000..dccee1dc05613
--- /dev/null
+++ b/pkgs/applications/blockchains/namecoin/default.nix
@@ -0,0 +1,48 @@
+{ lib, stdenv, fetchFromGitHub, openssl, boost, libevent, autoreconfHook, db4, miniupnpc, eject, pkg-config, qt4, protobuf, qrencode, hexdump
+, withGui }:
+
+with lib;
+stdenv.mkDerivation rec {
+  version = "nc0.20.1";
+  name = "namecoin" + toString (optional (!withGui) "d") + "-" + version;
+
+  src = fetchFromGitHub {
+    owner = "namecoin";
+    repo = "namecoin-core";
+    rev = version;
+    sha256 = "1wpfp9y95lmfg2nk1xqzchwck1wk6gwkya1rj07mf5in9jngxk9z";
+  };
+
+  nativeBuildInputs = [
+    autoreconfHook
+    pkg-config
+    hexdump
+  ];
+
+  buildInputs = [
+    openssl
+    boost
+    libevent
+    db4
+    miniupnpc
+    eject
+  ] ++ optionals withGui [
+    qt4
+    protobuf
+    qrencode
+  ];
+
+  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; [ infinisil ];
+    platforms = platforms.linux;
+  };
+}