bowtie2: fix missing dependencies

This commit is contained in:
Justin Bedo 2018-12-05 10:48:56 +11:00
parent 169e279711
commit 8c5251e3c0
No known key found for this signature in database
GPG key ID: 2C18202C56C182BD

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)" ];