dogecoin: 1.10.0 -> 1.14.1

fixes openssl 1.1 compat
This commit is contained in:
Robin Gloster 2019-08-20 23:04:20 +02:00
parent 52ce7f49f9
commit 284e529f53
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF

View File

@ -1,23 +1,23 @@
{ stdenv , fetchFromGitHub { stdenv , fetchFromGitHub
, pkgconfig, autoreconfHook , pkgconfig, autoreconfHook
, db5, openssl, boost, zlib, miniupnpc , db5, openssl, boost, zlib, miniupnpc, libevent
, protobuf, utillinux, qt4, qrencode , protobuf, utillinux, qt4, qrencode
, withGui }: , withGui }:
with stdenv.lib; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "dogecoin" + (toString (optional (!withGui) "d")) + "-" + version; name = "dogecoin" + (toString (optional (!withGui) "d")) + "-" + version;
version = "1.10.0"; version = "1.14.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "dogecoin"; owner = "dogecoin";
repo = "dogecoin"; repo = "dogecoin";
rev = "v${version}"; rev = "v${version}";
sha256 = "04rddx20d4fps2w3h1jxa2j8iyqpjv2fh897z0z3r06qjvjzf7rr"; sha256 = "0nmbi5gmms16baqs3fmdp2xm0yf8wawnyz80gcmca4j5ph2zka1v";
}; };
nativeBuildInputs = [ pkgconfig autoreconfHook ]; nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ openssl db5 openssl utillinux buildInputs = [ openssl db5 openssl utillinux libevent
protobuf boost zlib miniupnpc ] protobuf boost zlib miniupnpc ]
++ optionals withGui [ qt4 qrencode ]; ++ optionals withGui [ qt4 qrencode ];