summary refs log tree commit diff
path: root/pkgs/applications/blockchains/dashpay.nix
diff options
context:
space:
mode:
authorWilliam Casarin <jb55@jb55.com>2019-08-28 10:37:52 -0700
committerWilliam Casarin <jb55@jb55.com>2019-08-29 05:01:42 -0700
commit72682e46546d6d024a29e2fde009372e03b45b9f (patch)
tree4f5c749f3fdff3f182d9f7b005339aa10fd53897 /pkgs/applications/blockchains/dashpay.nix
parent58fd72f3e996856d5a4ba21ae25f87a82fe3e5dc (diff)
downloadnixpkgs-72682e46546d6d024a29e2fde009372e03b45b9f.tar
nixpkgs-72682e46546d6d024a29e2fde009372e03b45b9f.tar.gz
nixpkgs-72682e46546d6d024a29e2fde009372e03b45b9f.tar.bz2
nixpkgs-72682e46546d6d024a29e2fde009372e03b45b9f.tar.lz
nixpkgs-72682e46546d6d024a29e2fde009372e03b45b9f.tar.xz
nixpkgs-72682e46546d6d024a29e2fde009372e03b45b9f.tar.zst
nixpkgs-72682e46546d6d024a29e2fde009372e03b45b9f.zip
tree: rename altcoins to blockchains
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat (limited to 'pkgs/applications/blockchains/dashpay.nix')
-rw-r--r--pkgs/applications/blockchains/dashpay.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/applications/blockchains/dashpay.nix b/pkgs/applications/blockchains/dashpay.nix
new file mode 100644
index 00000000000..b2f2a457a99
--- /dev/null
+++ b/pkgs/applications/blockchains/dashpay.nix
@@ -0,0 +1,43 @@
+{ fetchFromGitHub, stdenv, pkgconfig, autoreconfHook
+, openssl, db48, boost, zlib, miniupnpc
+, qrencode, glib, protobuf, yasm, libevent
+, utillinux
+, enable_Upnp ? false
+, disable_Wallet ? false
+, disable_Daemon ? false }:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+  name = "dashpay-${version}";
+  version = "0.12.2.3";
+
+  src = fetchFromGitHub {
+    owner = "dashpay";
+    repo= "dash";
+    rev = "v${version}";
+    sha256 = "0l1gcj2xf2bal9ph9y11x8yd28fd25f55f48xbm45bfw3ij7nbaa";
+  };
+
+  nativeBuildInputs = [ pkgconfig autoreconfHook ];
+  buildInputs = [ glib openssl db48 yasm boost zlib libevent
+                  miniupnpc protobuf qrencode utillinux ];
+
+
+  configureFlags = [ "--with-boost-libdir=${boost.out}/lib --with-gui=no" ]
+                    ++ optional enable_Upnp "--enable-upnp-default"
+                    ++ optional disable_Wallet "--disable-wallet"
+                    ++ optional disable_Daemon "--disable-daemon"
+                    ;
+
+  meta = {
+    description = "A decentralized key/value registration and transfer system";
+    longDescription = ''
+      Dash (DASH) is an open sourced, privacy-centric digital currency
+      with instant transactions.  It allows you to keep your finances
+      private as you make transactions without waits, similar to cash.
+    '';
+    homepage = https://www.dash.org;
+    maintainers = with maintainers; [ AndersonTorres ];
+    platforms = platforms.unix;
+  };
+}