1{
2 lib,
3 stdenv,
4 fetchurl,
5 zlib,
6}:
7
8stdenv.mkDerivation rec {
9 pname = "stacks";
10 version = "2.68";
11 src = fetchurl {
12 url = "http://catchenlab.life.illinois.edu/stacks/source/${pname}-${version}.tar.gz";
13 sha256 = "sha256-ncUeo1bWDrRVewstGohUqvrkkq7Yf5dOAknMCapedlA=";
14 };
15
16 buildInputs = [ zlib ];
17
18 meta = {
19 description = "Software pipeline for building loci from short-read sequences";
20 homepage = "http://catchenlab.life.illinois.edu/stacks/";
21 maintainers = [ lib.maintainers.bzizou ];
22 license = lib.licenses.gpl3Plus;
23 platforms = lib.platforms.linux;
24 };
25}