nixpkgs/pkgs/by-name/pi/picard-tools/package.nix

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

34 lines
1007 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl, jre, makeWrapper}:
2017-03-07 05:16:03 +00:00
stdenv.mkDerivation rec {
pname = "picard-tools";
2024-10-10 04:19:53 +00:00
version = "3.3.0";
2017-03-07 05:16:03 +00:00
src = fetchurl {
url = "https://github.com/broadinstitute/picard/releases/download/${version}/picard.jar";
2024-10-10 04:19:53 +00:00
sha256 = "sha256-WIGadmBka3SzTigvXU0hyNuuoi3e/5bjJYdV2voPhtw=";
2017-03-07 05:16:03 +00:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jre ];
2017-03-07 05:16:03 +00:00
2021-08-02 22:04:29 +00:00
dontUnpack = true;
2017-03-07 05:16:03 +00:00
installPhase = ''
mkdir -p $out/libexec/picard
cp $src $out/libexec/picard/picard.jar
mkdir -p $out/bin
makeWrapper ${jre}/bin/java $out/bin/picard --add-flags "-jar $out/libexec/picard/picard.jar"
'';
meta = with lib; {
description = "Tools for high-throughput sequencing (HTS) data and formats such as SAM/BAM/CRAM and VCF";
2017-03-07 05:16:03 +00:00
license = licenses.mit;
2020-03-04 09:58:40 +00:00
homepage = "https://broadinstitute.github.io/picard/";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
2017-03-07 05:16:03 +00:00
maintainers = with maintainers; [ jbedo ];
mainProgram = "picard";
2017-03-07 05:16:03 +00:00
platforms = platforms.all;
};
}