about summary refs log tree commit diff
path: root/pkgs/applications/altcoins/dashpay.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-11-11 10:31:26 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-11-11 10:33:18 +0100
commite07e376563bdb010d89f37af0355732b852ff01e (patch)
treea9776ee6e629b7b6d043e469f0edc4c149ab0351 /pkgs/applications/altcoins/dashpay.nix
parent10cbe8a016579fe7d7d93a6d83a6e46f4515997a (diff)
downloadnixlib-e07e376563bdb010d89f37af0355732b852ff01e.tar
nixlib-e07e376563bdb010d89f37af0355732b852ff01e.tar.gz
nixlib-e07e376563bdb010d89f37af0355732b852ff01e.tar.bz2
nixlib-e07e376563bdb010d89f37af0355732b852ff01e.tar.lz
nixlib-e07e376563bdb010d89f37af0355732b852ff01e.tar.xz
nixlib-e07e376563bdb010d89f37af0355732b852ff01e.tar.zst
nixlib-e07e376563bdb010d89f37af0355732b852ff01e.zip
altcoins: rename dash to dashpay
It wouldn't be good to have two unrelated packages called `dash`.
Discussed on #10772.
Diffstat (limited to 'pkgs/applications/altcoins/dashpay.nix')
-rw-r--r--pkgs/applications/altcoins/dashpay.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/applications/altcoins/dashpay.nix b/pkgs/applications/altcoins/dashpay.nix
new file mode 100644
index 000000000000..68a0926c4668
--- /dev/null
+++ b/pkgs/applications/altcoins/dashpay.nix
@@ -0,0 +1,33 @@
+{ fetchzip, stdenv, pkgconfig, autoreconfHook
+, openssl, db48, boost, zlib, miniupnpc
+, qt4, qrencode, glib, protobuf, yasm
+, utillinux }:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+
+  name = "dashpay-${meta.version}";
+
+  src = fetchzip {
+    url = "https://github.com/dashpay/dash/archive/v${meta.version}.tar.gz";
+    sha256 = "19bk7cviy3n2dpj4kr3i6i0i3ac2l5ri8ln1a51nd3n90k016wnx";
+  };
+
+  buildInputs = [ pkgconfig autoreconfHook glib openssl db48 yasm
+                  boost zlib miniupnpc protobuf qt4 qrencode utillinux ];
+
+  configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ];
+
+  meta = with stdenv.lib; {
+    version = "0.12.0.55";
+    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 = http://dashpay.io;
+    maintainers = with maintainers; [ AndersonTorres ];
+    platforms = with platforms; unix;
+  };
+}