47c672b4b1
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. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 2.18.4 with grep in /nix/store/k62ym9i08d0w9sgmdjjfyy4lf2n9ig7p-picard-tools-2.18.4 - directory tree listing: https://gist.github.com/4d9e3062e701681d9b53033dc9511663
31 lines
914 B
Nix
31 lines
914 B
Nix
{stdenv, fetchurl, jre, makeWrapper}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "picard-tools-${version}";
|
|
version = "2.18.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/broadinstitute/picard/releases/download/${version}/picard.jar";
|
|
sha256 = "0qwalb49g8s6dswhhk12ny33xzzj38xa2rj6p6ar0hrwh7aijlqc";
|
|
};
|
|
|
|
buildInputs = [ jre makeWrapper ];
|
|
|
|
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;
|
|
};
|
|
}
|