nixpkgs/pkgs/applications/science/biology/samblaster/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

30 lines
755 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;
};
}