hisat2: fix missing perl dependency

This commit is contained in:
Justin Bedo 2019-07-05 10:29:51 +10:00
parent cc631b7277
commit d2d449cea5
No known key found for this signature in database
GPG key ID: 2C18202C56C182BD

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, unzip, which, python}:
{stdenv, fetchurl, unzip, which, python, perl}:
stdenv.mkDerivation rec {
name = "hisat2-${version}";
@ -9,7 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "10g73sdf6vqqfhhd92hliw7bbpkb8v4pp5012r5l21zws7p7d8l9";
};
buildInputs = [ unzip which python ];
nativeBuildInputs = [ unzip which ];
buildInputs = [ python perl ];
installPhase = ''
mkdir -p $out/bin