nixpkgs/pkgs/applications/science/biology/picard-tools/default.nix

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

34 lines
1008 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";
2022-07-29 16:12:10 +00:00
version = "2.27.4";
2017-03-07 05:16:03 +00:00
src = fetchurl {
url = "https://github.com/broadinstitute/picard/releases/download/${version}/picard.jar";
2022-07-29 16:12:10 +00:00
sha256 = "sha256-H52iduXuZXkH7i+1qGq05DTPgLGZD2ke6US5nTzmvDg=";
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;
};
}