Merge pull request #51534 from jbedo/bowtie2

bowtie2: fix missing dependencies
This commit is contained in:
Maximilian Bosch 2018-12-10 00:58:51 +01:00 committed by GitHub
commit de02111a51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, zlib, tbb }:
{ stdenv, fetchFromGitHub, zlib, tbb, python, perl }:
stdenv.mkDerivation rec {
pname = "bowtie2";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
sha256 = "1zl3cf327y2p7p03cavymbh7b00djc7lncfaqih33n96iy9q8ibp";
};
buildInputs = [ zlib tbb ];
buildInputs = [ zlib tbb python perl ];
installFlags = [ "prefix=$(out)" ];