From fcf83a23aaababfd179ac57b96127276a3bb5111 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Fri, 3 May 2019 20:54:12 -0500 Subject: [PATCH] bitcoin: cleanup check-only input, move to checkInputs Per reviewer request, good call thanks! --- pkgs/applications/altcoins/bitcoin.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/altcoins/bitcoin.nix b/pkgs/applications/altcoins/bitcoin.nix index 288bc1a9cf5..d1802f774f2 100644 --- a/pkgs/applications/altcoins/bitcoin.nix +++ b/pkgs/applications/altcoins/bitcoin.nix @@ -14,8 +14,7 @@ stdenv.mkDerivation rec{ sha256 = "5e4e6890e07b620a93fdb24605dae2bb53e8435b2a93d37558e1db1913df405f"; }; - nativeBuildInputs = [ pkgconfig autoreconfHook ] - ++ optionals doCheck [ python3 ]; + nativeBuildInputs = [ pkgconfig autoreconfHook ]; buildInputs = [ openssl db48 boost zlib zeromq miniupnpc protobuf libevent] ++ optionals stdenv.isLinux [ utillinux ] @@ -31,7 +30,7 @@ stdenv.mkDerivation rec{ "--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin" ]; - checkInputs = [ rapidcheck ]; + checkInputs = [ rapidcheck python3 ]; doCheck = true;