pkgs: havm: use 'checkInputs' for test dependency

This commit is contained in:
Bruno BELANYI 2021-08-31 18:44:10 +02:00
parent 9a5bba7574
commit 2c81416774

View file

@ -10,7 +10,10 @@ stdenv.mkDerivation rec {
buildInputs = [ buildInputs = [
ghc ghc
which # Used by tests ];
checkInputs = [
which
]; ];
doCheck = true; doCheck = true;