ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
20 lines
593 B
Nix
20 lines
593 B
Nix
{ lib, stdenv, fetchurl, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "stacks";
|
|
version = "2.68";
|
|
src = fetchurl {
|
|
url = "http://catchenlab.life.illinois.edu/stacks/source/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-ncUeo1bWDrRVewstGohUqvrkkq7Yf5dOAknMCapedlA=";
|
|
};
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
meta = {
|
|
description = "Software pipeline for building loci from short-read sequences";
|
|
homepage = "http://catchenlab.life.illinois.edu/stacks/";
|
|
maintainers = [ lib.maintainers.bzizou ];
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|