bitcoin: cleanup check-only input, move to checkInputs

Per reviewer request, good call thanks!
This commit is contained in:
Will Dietz 2019-05-03 20:54:12 -05:00
parent 7b7b56def4
commit fcf83a23aa

@ -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;