mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
74 lines
1.8 KiB
Nix
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;
|
|
};
|
|
}
|