Merge pull request #117335 from bzizou/spades

SPAdes: 3.15.1 -> 3.15.2 + fix license and platform

authored by

Sandro and committed by
GitHub
489ca697 6cfb9c85

+4 -4
+4 -4
pkgs/applications/science/biology/spades/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "SPAdes"; 5 - version = "3.15.1"; 5 + version = "3.15.2"; 6 6 7 7 src = fetchurl { 8 8 url = "http://cab.spbu.ru/files/release${version}/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-2wZzdFRZ7zyhWwYL+c/5qhKDgj+LPtnge3UNHWJ9Ykk="; 9 + sha256 = "03cxz4m1n4rc81lqb4p1pz2ammms7f31wvi4daywfkc13aal6fz9"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ cmake ]; ··· 19 19 20 20 meta = with lib; { 21 21 description = "St. Petersburg genome assembler: assembly toolkit containing various assembly pipelines"; 22 - license = licenses.gpl2; 22 + license = licenses.gpl2Only; 23 23 homepage = "http://cab.spbu.ru/software/spades/"; 24 - platforms = platforms.unix; 24 + platforms = with platforms; [ "x86_64-linux" "x86_64-darwin"]; 25 25 maintainers = [ maintainers.bzizou ]; 26 26 }; 27 27 }