mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{lib, stdenv, fetchurl, jre, makeWrapper}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "varscan";
|
|
version = "2.4.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/dkoboldt/varscan/raw/master/VarScan.v${version}.jar";
|
|
sha256 = "sha256-6CcjC0epbKsDXFxxeOUImSGh4cjR5INqawL/iOOkwqs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ jre ];
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/libexec/varscan
|
|
cp $src $out/libexec/varscan/varscan.jar
|
|
mkdir -p $out/bin
|
|
makeWrapper ${jre}/bin/java $out/bin/varscan --add-flags "-jar $out/libexec/varscan/varscan.jar"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Variant calling and somatic mutation/CNV detection for next-generation sequencing data";
|
|
# VarScan 2 is free for non-commercial use by academic,
|
|
# government, and non-profit/not-for-profit institutions. A
|
|
# commercial version of the software is available, and licensed
|
|
# through the Office of Technology Management at Washington
|
|
# University School of Medicine.
|
|
license = licenses.unfree;
|
|
homepage = "https://github.com/dkoboldt/varscan";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
maintainers = with maintainers; [ jbedo ];
|
|
platforms = platforms.all;
|
|
};
|
|
|
|
}
|