nixpkgs/pkgs/by-name/ju/jugglinglab/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

74 lines
1.8 KiB
Nix

{ lib
, stdenv
, maven
, fetchFromGitHub
, makeWrapper
, wrapGAppsHook3
, jre
}:
let
platformName = {
"x86_64-linux" = "linux-x86-64";
"aarch64-linux" = "linux-aarch64";
"x86_64-darwin" = "darwin-x86-64";
"aarch64-darwin" = "darwin-aarch64";
}.${stdenv.system} or null;
in
maven.buildMavenPackage rec {
pname = "jugglinglab";
version = "1.6.5";
src = fetchFromGitHub {
owner = "jkboyce";
repo = "jugglinglab";
rev = "v${version}";
hash = "sha256-Y87uHFpVs4A/wErNO2ZF6Su0v4LEvaE9nIysrqFoY8w=";
};
patches = [
# make sure mvnHash doesn't change when maven is updated
./fix-default-maven-plugin-versions.patch
];
mvnHash = "sha256-1Uzo9nRw+YR/sd7CC9MTPe/lttkRX6BtmcsHaagP1Do=";
# fix jar timestamps for reproducibility
mvnParameters = "-Dproject.build.outputTimestamp=1980-01-01T00:00:02Z";
nativeBuildInputs = [
makeWrapper
wrapGAppsHook3
];
dontWrapGApps = true;
installPhase = ''
runHook preInstall
install -Dm644 bin/JugglingLab.jar -t $out/share/jugglinglab
${lib.optionalString (platformName != null) ''
install -Dm755 bin/ortools-lib/ortools-${platformName}/* -t $out/lib/ortools-lib
''}
runHook postInstall
'';
# gappsWrapperArgs are set in preFixup
postFixup = ''
makeWrapper ${jre}/bin/java $out/bin/jugglinglab \
"''${gappsWrapperArgs[@]}" \
--add-flags "-Xss2048k -Djava.library.path=$out/lib/ortools-lib" \
--add-flags "-jar $out/share/jugglinglab/JugglingLab.jar"
'';
meta = with lib; {
description = "Program to visualize different juggling pattens";
homepage = "https://jugglinglab.org/";
license = licenses.gpl2Only;
mainProgram = "jugglinglab";
maintainers = with maintainers; [ wnklmnn tomasajt ];
platforms = platforms.all;
};
}