Merge pull request #64324 from jbedo/hisat2

hisat2: fix missing perl dependency
This commit is contained in:
worldofpeace
2019-07-13 13:21:11 -04:00
committed by GitHub

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