nixpkgs/pkgs/applications/science/biology/samblaster/default.nix

29 lines
723 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2019-12-17 06:26:28 +03:00
stdenv.mkDerivation rec {
pname = "samblaster";
2020-11-12 04:43:02 +03:00
version = "0.1.26";
2019-12-17 06:26:28 +03:00
src = fetchFromGitHub {
owner = "GregoryFaust";
repo = "samblaster";
rev = "v.${version}";
2020-11-12 04:43:02 +03:00
sha256 = "0g24fq5hplnfgqkh3xqpg3lgx3wmxwnh9c7m6yw7pbi40lmgl1jv";
2019-12-17 06:26:28 +03:00
};
2021-05-18 14:41:51 +03:00
makeFlags = [ "CPP=${stdenv.cc.targetPrefix}c++" ];
2019-12-17 06:26:28 +03:00
installPhase = ''
mkdir -p $out/bin
cp samblaster $out/bin
'';
meta = with lib; {
2019-12-17 06:26:28 +03:00
description = "Tool for marking duplicates and extracting discordant/split reads from SAM/BAM files";
maintainers = with maintainers; [ jbedo ];
license = licenses.mit;
homepage = "https://github.com/GregoryFaust/samblaster";
platforms = platforms.x86_64;
};
}