nixpkgs-suyu/pkgs/applications/science/biology/spades/default.nix

28 lines
733 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, zlib, bzip2, cmake, python3 }:
2019-10-03 11:18:48 +02:00
stdenv.mkDerivation rec {
pname = "SPAdes";
2021-03-09 18:01:01 +01:00
version = "3.15.1";
2019-10-03 11:18:48 +02:00
src = fetchurl {
url = "http://cab.spbu.ru/files/release${version}/${pname}-${version}.tar.gz";
2021-03-09 18:01:01 +01:00
sha256 = "sha256-2wZzdFRZ7zyhWwYL+c/5qhKDgj+LPtnge3UNHWJ9Ykk=";
2019-10-03 11:18:48 +02:00
};
nativeBuildInputs = [ cmake ];
2020-06-08 01:38:37 +02:00
buildInputs = [ zlib bzip2 python3 ];
2019-10-03 11:18:48 +02:00
doCheck = true;
sourceRoot = "${pname}-${version}/src";
meta = with lib; {
2019-10-03 11:18:48 +02:00
description = "St. Petersburg genome assembler: assembly toolkit containing various assembly pipelines";
license = licenses.gpl2;
homepage = "http://cab.spbu.ru/software/spades/";
platforms = platforms.unix;
maintainers = [ maintainers.bzizou ];
};
}