1 { lib, stdenv, fetchurl, zlib }:
3 stdenv.mkDerivation rec {
7 url = "http://catchenlab.life.illinois.edu/stacks/source/${pname}-${version}.tar.gz";
8 sha256 = "sha256-ncUeo1bWDrRVewstGohUqvrkkq7Yf5dOAknMCapedlA=";
11 buildInputs = [ zlib ];
14 description = "Software pipeline for building loci from short-read sequences";
15 homepage = "http://catchenlab.life.illinois.edu/stacks/";
16 maintainers = [ lib.maintainers.bzizou ];
17 license = lib.licenses.gpl3Plus;
18 platforms = lib.platforms.linux;