3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/biology/stacks/default.nix

20 lines
556 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchurl, zlib }:
2019-03-29 12:57:01 +00:00
stdenv.mkDerivation rec {
pname = "stacks";
2021-08-22 08:08:39 +01:00
version = "2.59";
2019-03-29 12:57:01 +00:00
src = fetchurl {
url = "http://catchenlab.life.illinois.edu/stacks/source/${pname}-${version}.tar.gz";
2021-08-22 08:08:39 +01:00
sha256 = "sha256-pVFwb4EPba9wL9kDGN2gi7aeH+sPhDG/XLyHxqG4zd4=";
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/";
2021-01-15 13:21:58 +00:00
maintainers = [ lib.maintainers.bzizou ];
2021-08-24 08:47:24 +01:00
license = lib.licenses.gpl3Plus;
2019-03-29 12:57:01 +00:00
};
}