nixpkgs/pkgs/applications/science/biology/stacks/default.nix

20 lines
566 B
Nix
Raw Normal View History

2019-03-29 12:57:01 +00:00
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
pname = "stacks";
2020-05-10 13:32:24 +00:00
version = "2.53";
2019-03-29 12:57:01 +00:00
src = fetchurl {
url = "http://catchenlab.life.illinois.edu/stacks/source/${pname}-${version}.tar.gz";
2020-05-10 13:32:24 +00:00
sha256 = "1zchds205nwdqch1246953dr8c0019yas178qbq3jypbxvmgq7pf";
2019-03-29 12:57:01 +00:00
};
buildInputs = [ zlib ];
meta = {
description = "Software pipeline for building loci from short-read sequences";
2020-03-28 10:05:53 +00:00
homepage = "http://catchenlab.life.illinois.edu/stacks/";
2019-03-29 12:57:01 +00:00
maintainers = [ stdenv.lib.maintainers.bzizou ];
license = stdenv.lib.licenses.gpl3;
};
}