biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / science / biology / stacks / default.nix
blobddaa6bafd5fd8ac84223f9e1e0e9d0b8ebfdbb2c
1 { lib, stdenv, fetchurl, zlib }:
3 stdenv.mkDerivation rec {
4   pname = "stacks";
5   version = "2.68";
6   src = fetchurl {
7     url = "http://catchenlab.life.illinois.edu/stacks/source/${pname}-${version}.tar.gz";
8     sha256 = "sha256-ncUeo1bWDrRVewstGohUqvrkkq7Yf5dOAknMCapedlA=";
9   };
11   buildInputs = [ zlib ];
13   meta = {
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;
19   };