summary refs log tree commit diff
path: root/pkgs/applications/altcoins/dogecoin.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/altcoins/dogecoin.nix')
-rw-r--r--pkgs/applications/altcoins/dogecoin.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/pkgs/applications/altcoins/dogecoin.nix b/pkgs/applications/altcoins/dogecoin.nix
new file mode 100644
index 00000000000..cf2f25bfeee
--- /dev/null
+++ b/pkgs/applications/altcoins/dogecoin.nix
@@ -0,0 +1,47 @@
+{ stdenv , fetchurl
+, pkgconfig, autoreconfHook
+, db5, openssl, boost, zlib, miniupnpc
+, glib, protobuf, utillinux, qt4, qrencode
+, withGui }:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+
+  name = "dogecoin" + (toString (optional (!withGui) "d")) + "-" + version;
+  version = "1.8.2";
+
+  src = fetchurl {
+    url = "https://github.com/dogecoin/dogecoin/archive/v${version}.tar.gz";
+    sha256 = "17jxsxsrsz3qy2hxdpw78vcbnnd0nq614iy42ypzhw4pdpz0s1l7";
+  };
+
+  buildInputs = [ autoreconfHook pkgconfig openssl
+                  db5 openssl utillinux protobuf boost zlib miniupnpc ]
+                  ++ optionals withGui [ qt4 qrencode ];
+
+  # BSD DB5 location
+  patchPhase = ''
+    sed -i \
+      -e 's,BDB_CPPFLAGS=$,BDB_CPPFLAGS="-I${db5}/include",g' \
+      -e 's,BDB_LIBS=$,BDB_LIBS="-L${db5}/lib",g' \
+      -e 's,bdbdirlist=$,bdbdirlist="${db5}/include",g' \
+      src/m4/dogecoin_find_bdb51.m4
+  '';
+
+  configureFlags = [ "--with-incompatible-bdb"
+                     "--with-boost-libdir=${boost.lib}/lib" ]
+                     ++ optionals withGui [ "--with-gui" ];
+
+  meta = {
+    description = "Wow, such coin, much shiba, very rich";
+    longDescription = ''
+      Dogecoin is a decentralized, peer-to-peer digital currency that
+      enables you to easily send money online. Think of it as "the
+      internet currency."
+      It is named after a famous Internet meme, the "Doge" - a Shiba Inu dog.
+    '';
+    homepage = http://www.dogecoin.com/;
+    license = licenses.mit;
+    maintainers = with maintainers; [ edwtjo offline AndersonTorres ];
+  };
+}