nixpkgs/pkgs/by-name/ks/kssd/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.4 KiB
Nix
Raw Normal View History

2023-07-14 08:29:33 +00:00
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, zlib
, kssd
, runCommand
2023-07-14 08:29:33 +00:00
}:
2019-10-05 15:37:21 +00:00
2023-07-14 08:29:33 +00:00
stdenv.mkDerivation (finalAttrs: {
2019-10-05 15:37:21 +00:00
pname = "kssd";
version = "2.21";
2019-10-05 15:37:21 +00:00
2021-12-13 14:35:09 +00:00
src = fetchFromGitHub {
owner = "yhg926";
repo = "public_kssd";
2023-07-14 08:29:33 +00:00
rev = "v${finalAttrs.version}";
hash = "sha256-D/s1jL2oKE0rSdRMVljskYFsw5UPOv1L95Of+K+e17w=";
2019-10-05 15:37:21 +00:00
};
patches = [
# https://github.com/yhg926/public_kssd/pull/11
(fetchpatch {
name = "allocate-enough-memory.patch";
url = "https://github.com/yhg926/public_kssd/commit/b1e66bbcc04687bc3201301cd742a0b26a87cb5d.patch";
hash = "sha256-yFyJetpsGKeu+H6Oxrmn5ea4ESVtblb3YJDja4JEAEM=";
})
];
2023-07-14 08:29:33 +00:00
buildInputs = [ zlib ];
2019-10-05 15:37:21 +00:00
installPhase = ''
2023-07-14 08:29:33 +00:00
runHook preInstall
install -vD kssd $out/bin/kssd
runHook postInstall
2019-10-05 15:37:21 +00:00
'';
passthru.tests = {
simple = runCommand "${finalAttrs.pname}-test" { } ''
mkdir $out
${lib.getExe kssd} dist -L ${kssd.src}/shuf_file/L3K10.shuf -r ${kssd.src}/test_fna/seqs1 -o $out/reference
${lib.getExe kssd} dist -L ${kssd.src}/shuf_file/L3K10.shuf -o $out/query ${kssd.src}/test_fna/seqs2
${lib.getExe kssd} dist -r $out/reference -o $out/distout $out/query
'';
};
meta = with lib; {
2019-10-05 15:37:21 +00:00
description = "K-mer substring space decomposition";
license = licenses.asl20;
homepage = "https://github.com/yhg926/public_kssd";
maintainers = with maintainers; [ unode ];
platforms = platforms.linux;
2023-07-14 08:29:33 +00:00
mainProgram = "kssd";
2019-10-05 15:37:21 +00:00
};
2023-07-14 08:29:33 +00:00
})