pkgs: havm: use 'checkInputs' for test dependency

This commit is contained in:
Bruno BELANYI 2021-08-31 18:44:10 +02:00
parent 8596ce8638
commit 878c92b67e

View file

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