3
0
Fork 0
forked from mirrors/nixpkgs

kssd: init at 1.0

This commit is contained in:
Renato Alves 2019-10-05 17:37:21 +02:00 committed by Lassulus
parent 077934e192
commit e18fb092f1
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchurl, zlib, automake, autoconf, libtool }:
stdenv.mkDerivation rec {
pname = "kssd";
version = "1.0";
src = fetchurl {
url = "https://github.com/yhg926/public_${pname}/archive/v${version}.tar.gz";
sha256 = "a5dcaf520049a962bef625cb59a567ea2b4252d4dc9be28dd06123d340e03919";
};
buildInputs = [ zlib automake autoconf libtool ];
installPhase = ''
install -vD kssd $out/bin/kssd
'';
meta = with stdenv.lib; {
description = "K-mer substring space decomposition";
license = licenses.asl20;
homepage = "https://github.com/yhg926/public_kssd";
maintainers = with maintainers; [ unode ];
platforms = [ "x86_64-linux" ];
};
}

View file

@ -23607,6 +23607,8 @@ in
kallisto = callPackage ../applications/science/biology/kallisto { };
kssd = callPackage ../applications/science/biology/kssd { };
macse = callPackage ../applications/science/biology/macse { };
migrate = callPackage ../applications/science/biology/migrate { };