From 910c73e062dc14917753df23e017c3ee6f1a37f3 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Mon, 27 Jan 2020 10:22:31 +0100 Subject: [PATCH] litecoin: add zmq support --- pkgs/applications/blockchains/litecoin.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/blockchains/litecoin.nix b/pkgs/applications/blockchains/litecoin.nix index b2c905fa602..47077266541 100644 --- a/pkgs/applications/blockchains/litecoin.nix +++ b/pkgs/applications/blockchains/litecoin.nix @@ -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 ];