c00dbcb7c4
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/picard-tools/versions
32 lines
941 B
Nix
32 lines
941 B
Nix
{stdenv, fetchurl, jre, makeWrapper}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "picard-tools-${version}";
|
|
version = "2.18.21";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/broadinstitute/picard/releases/download/${version}/picard.jar";
|
|
sha256 = "0p1na79p0kz1x1nd88100487s4f306p8k4m7dq5r4m2kdsc1dqin";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ jre ];
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
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 stdenv.lib; {
|
|
description = "Tools for high-throughput sequencing (HTS) data and formats such as SAM/BAM/CRAM and VCF";
|
|
license = licenses.mit;
|
|
homepage = https://broadinstitute.github.io/picard/;
|
|
maintainers = with maintainers; [ jbedo ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|