mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
jdk,
|
|
ant,
|
|
git,
|
|
unzip,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rtg-tools";
|
|
version = "3.12.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RealTimeGenomics";
|
|
repo = "rtg-tools";
|
|
rev = version;
|
|
hash = "sha256-fMrrjrgaGxBVxn6qMq2g0oFv6qtfhZcQlkvv1E9Os6Y=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
ant
|
|
jdk
|
|
git # Required by build.xml to manage the build revision
|
|
unzip
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
ant rtg-tools.jar
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
cp build/rtg-tools.jar $out/bin/RTG.jar
|
|
cp installer/rtg $out/bin/
|
|
runHook postInstall
|
|
'';
|
|
|
|
postPatch = ''
|
|
# Use a location outside nix (must be writable)
|
|
substituteInPlace installer/rtg \
|
|
--replace-fail '$THIS_DIR/rtg.cfg' '$HOME/.config/rtg-tools/rtg.cfg' \
|
|
--replace-fail 'RTG_JAVA="java"' 'RTG_JAVA="${jdk}/lib/openjdk/bin/java"'
|
|
|
|
sed -i '/USER_JAVA_OPTS=$RTG_JAVA_OPTS/a mkdir -p $HOME/.config/rtg-tools' installer/rtg
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/RealTimeGenomics/rtg-tools";
|
|
description = "Useful utilities for dealing with VCF files and sequence data, especially vcfeval";
|
|
license = licenses.bsd2;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ apraga ];
|
|
};
|
|
}
|