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

20 lines
552 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-03-09 17:19:55 +00:00
version = "2.55";
2019-03-29 12:57:01 +00:00
src = fetchurl {
url = "http://catchenlab.life.illinois.edu/stacks/source/${pname}-${version}.tar.gz";
2021-03-09 17:19:55 +00:00
sha256 = "sha256-p8L0F3A+GdNsPgTQNn9Em5EjFCc9f7gUvyLIRCTd05c=";
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 ];
license = lib.licenses.gpl3;
2019-03-29 12:57:01 +00:00
};
}