Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
34 lines
762 B
Nix
34 lines
762 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "samblaster";
|
|
version = "0.1.26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GregoryFaust";
|
|
repo = "samblaster";
|
|
rev = "v.${version}";
|
|
sha256 = "0g24fq5hplnfgqkh3xqpg3lgx3wmxwnh9c7m6yw7pbi40lmgl1jv";
|
|
};
|
|
|
|
makeFlags = [ "CPP=${stdenv.cc.targetPrefix}c++" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp samblaster $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool for marking duplicates and extracting discordant/split reads from SAM/BAM files";
|
|
mainProgram = "samblaster";
|
|
maintainers = with maintainers; [ jbedo ];
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/GregoryFaust/samblaster";
|
|
platforms = platforms.x86_64;
|
|
};
|
|
}
|