summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-03 10:03:24 +0100
committerGitHub <noreply@github.com>2021-01-03 10:03:24 +0100
commit6ae069c9902e25280ef7b73a7f36b9f3e9f0c1b0 (patch)
tree164c8edd09d0b06ef7e48134f58338e215182828 /pkgs/applications/science
parentb33eada9602427826a3e71949a0312d873f322f6 (diff)
parent03b99f0721a29bfa48084ff163af1e11f82dac3a (diff)
Merge pull request #108249 from prusnak/bowtie
bowtie: init at at 1.3.0
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/biology/bowtie/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/science/biology/bowtie/default.nix b/pkgs/applications/science/biology/bowtie/default.nix
new file mode 100644
index 000000000000..964eeddb461d
--- /dev/null
+++ b/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;
+ };
+}