bowtie2: resolve missing runtime dependencies

This commit is contained in:
Justin Bedo
2021-02-03 11:12:26 +11:00
parent bf6df7187e
commit 6d84ba18d5
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, tbb, zlib }:
{ lib, stdenv, fetchFromGitHub, cmake, tbb, zlib, python3, perl }:
stdenv.mkDerivation rec {
pname = "bowtie2";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
buildInputs = [ tbb zlib ];
buildInputs = [ tbb zlib python3 perl ];
meta = with lib; {
description = "An ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences";