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

26 lines
681 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, zlib, automake, autoconf, libtool }:
2019-10-05 17:37:21 +02:00
stdenv.mkDerivation rec {
pname = "kssd";
2020-08-14 17:06:11 +02:00
version = "1.1";
2019-10-05 17:37:21 +02:00
src = fetchurl {
url = "https://github.com/yhg926/public_${pname}/archive/v${version}.tar.gz";
2020-08-14 17:06:11 +02:00
sha256 = "1x3v31cxnww4w5zn15vy0bwk53llsa0f97ma6qbw89h152d2mx5x";
2019-10-05 17:37:21 +02:00
};
buildInputs = [ zlib automake autoconf libtool ];
installPhase = ''
install -vD kssd $out/bin/kssd
'';
meta = with lib; {
2019-10-05 17:37:21 +02:00
description = "K-mer substring space decomposition";
license = licenses.asl20;
homepage = "https://github.com/yhg926/public_kssd";
maintainers = with maintainers; [ unode ];
platforms = [ "x86_64-linux" ];
};
}