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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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";
2022-01-02 18:23:58 +00:00
version = "2.60";
2019-03-29 12:57:01 +00:00
src = fetchurl {
url = "http://catchenlab.life.illinois.edu/stacks/source/${pname}-${version}.tar.gz";
2022-01-02 18:23:58 +00:00
sha256 = "sha256-ppKG7Z1TyLwUyqRnGYk3QWPJqKeNcW04GMW7myPFSNM=";
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
};
}