Merge pull request #111691 from jbedo/bowtie2

bowtie2: resolve missing runtime dependencies
This commit is contained in:
Artturi 2021-08-07 04:03:47 +03:00 committed by GitHub
commit e69c8ea78e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";