3
0
Fork 0
forked from mirrors/nixpkgs

litecoin: add zmq support

This commit is contained in:
Marek Mahut 2020-01-27 10:22:31 +01:00
parent 3baa12f286
commit 910c73e062

View file

@ -5,6 +5,7 @@
, AppKit
, withGui ? true, libevent
, qtbase, qttools
, zeromq
}:
with stdenv.lib;
@ -22,7 +23,7 @@ mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ openssl db48 boost zlib
buildInputs = [ openssl db48 boost zlib zeromq
miniupnpc glib protobuf utillinux libevent ]
++ optionals stdenv.isDarwin [ AppKit ]
++ optionals withGui [ qtbase qttools qrencode ];