Skip to content

Commit

Permalink
bowtie: init at at 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
prusnak committed Jan 2, 2021
1 parent b97d7ee commit 03b99f0
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/applications/science/biology/bowtie/default.nix
@@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, zlib }:

stdenv.mkDerivation rec {
pname = "bowtie";
version = "1.3.0";

src = fetchFromGitHub {
owner = "BenLangmead";
repo = pname;
rev = "v${version}";
sha256 = "0da2kzyfsn6xv8mlqsv2vv7k8g0c9d2vgqzq8yqk888yljdzcrjp";
};

buildInputs = [ zlib ];

installFlags = [ "prefix=$(out)" ];

meta = with stdenv.lib; {
description = "An ultrafast memory-efficient short read aligner";
license = licenses.artistic2;
homepage = "http://bowtie-bio.sf.net/bowtie";
maintainers = with maintainers; [ prusnak ];
platforms = platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -1616,6 +1616,8 @@ in

boot = callPackage ../development/tools/build-managers/boot { };

bowtie = callPackage ../applications/science/biology/bowtie { };

bowtie2 = callPackage ../applications/science/biology/bowtie2 { };

boxfs = callPackage ../tools/filesystems/boxfs { };
Expand Down

0 comments on commit 03b99f0

Please sign in to comment.