samtools: Fix cross-compilation

Tests require bgzip which comes from the htslib package.

This did not cause problems prior to
41485e7337 as tests were not run in
cross-compilation.
This commit is contained in:
Luis Pedro Coelho 2022-07-24 17:17:04 +02:00
parent 81fedf1c28
commit 5877d8e072

View file

@ -18,6 +18,9 @@ stdenv.mkDerivation rec {
})
];
# tests require `bgzip` from the htslib package
checkInputs = [ htslib ];
nativeBuildInputs = [ perl ];
buildInputs = [ zlib ncurses htslib ];