about summary refs log tree commit diff
path: root/pkgs/applications/altcoins
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-08-20 23:04:20 +0200
committerRobin Gloster <mail@glob.in>2019-08-20 23:04:20 +0200
commit284e529f5360e94692d68a1c1b914d1de16ce3c8 (patch)
tree90f162c58cdb78898ba6b15f5390fedc18ac6d5d /pkgs/applications/altcoins
parent52ce7f49f9c4678668463b2ff3b65eab981c854c (diff)
dogecoin: 1.10.0 -> 1.14.1
fixes openssl 1.1 compat
Diffstat (limited to 'pkgs/applications/altcoins')
-rw-r--r--pkgs/applications/altcoins/dogecoin.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/altcoins/dogecoin.nix b/pkgs/applications/altcoins/dogecoin.nix
index 0452f40133458..6feb085b5039d 100644
--- a/pkgs/applications/altcoins/dogecoin.nix
+++ b/pkgs/applications/altcoins/dogecoin.nix
@@ -1,23 +1,23 @@
 { stdenv , fetchFromGitHub
 , pkgconfig, autoreconfHook
-, db5, openssl, boost, zlib, miniupnpc
+, db5, openssl, boost, zlib, miniupnpc, libevent
 , protobuf, utillinux, qt4, qrencode
 , withGui }:
 
 with stdenv.lib;
 stdenv.mkDerivation rec {
   name = "dogecoin" + (toString (optional (!withGui) "d")) + "-" + version;
-  version = "1.10.0";
+  version = "1.14.1";
 
   src = fetchFromGitHub {
     owner = "dogecoin";
     repo = "dogecoin";
     rev = "v${version}";
-    sha256 = "04rddx20d4fps2w3h1jxa2j8iyqpjv2fh897z0z3r06qjvjzf7rr";
+    sha256 = "0nmbi5gmms16baqs3fmdp2xm0yf8wawnyz80gcmca4j5ph2zka1v";
   };
 
   nativeBuildInputs = [ pkgconfig autoreconfHook ];
-  buildInputs = [ openssl db5 openssl utillinux
+  buildInputs = [ openssl db5 openssl utillinux libevent
                   protobuf boost zlib miniupnpc ]
                   ++ optionals withGui [ qt4 qrencode ];