nixpkgs/pkgs/applications/science/biology/stacks/default.nix
R. RyanTM f4a20199d2 stacks: 2.3e -> 2.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/stacks/versions
2019-05-24 03:50:06 -07:00

20 lines
563 B
Nix

{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
pname = "stacks";
version = "2.4";
src = fetchurl {
url = "http://catchenlab.life.illinois.edu/stacks/source/${pname}-${version}.tar.gz";
sha256 = "1ha1avkh6rqqvsy4k42336a2gj14y1jq19a2x8cjmiidi9l3s29h";
};
buildInputs = [ zlib ];
meta = {
description = "Software pipeline for building loci from short-read sequences";
homepage = http://catchenlab.life.illinois.edu/stacks/;
maintainers = [ stdenv.lib.maintainers.bzizou ];
license = stdenv.lib.licenses.gpl3;
};
}