diff options
| author | seth <getchoo@tuta.io> | 2023-08-22 08:28:16 -0400 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-08-23 09:50:19 +0000 |
| commit | 05294f2c7ada9628dd2bc45f5872d3d69a0e3c88 (patch) | |
| tree | de6a919e70bfc0e0ec77dbfbca5a1083cc5486b5 | |
| parent | Merge pull request #250431 from risicle/ris-openimageio-2.4.13.0-r23.05 (diff) | |
| download | nixpkgs-origin/backport-250757-to-release-23.05.tar.gz | |
prismlauncher: add canonicalize-jars-hookorigin/backport-250757-to-release-23.05
this strips timestamps from java build artifacts, fixing reproducibility
issues
(cherry picked from commit 40a6e38aebddcd66a966a213b1f41b1dbd83b5aa)
| -rw-r--r-- | pkgs/games/prismlauncher/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/games/prismlauncher/default.nix b/pkgs/games/prismlauncher/default.nix index 0f28a6edd4a1..63c6901326ee 100644 --- a/pkgs/games/prismlauncher/default.nix +++ b/pkgs/games/prismlauncher/default.nix @@ -2,6 +2,7 @@ , stdenv , fetchFromGitHub , fetchpatch +, canonicalize-jars-hook , cmake , cmark , Cocoa @@ -67,7 +68,7 @@ rec { }) ]; - nativeBuildInputs = [ extra-cmake-modules cmake jdk17 ninja ]; + nativeBuildInputs = [ extra-cmake-modules cmake jdk17 ninja canonicalize-jars-hook ]; buildInputs = [ qtbase |
