pdftk: use minimal jre

This commit is contained in:
Sandro Jäckel
2025-04-07 02:24:22 +02:00
parent 5ec2ac8915
commit cbef4f28aa
+9 -1
View File
@@ -3,12 +3,20 @@
stdenv,
fetchFromGitLab,
gradle_8,
jre,
jre_headless,
jre_minimal,
runtimeShell,
}:
let
# "Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0."
gradle = gradle_8;
jre = jre_minimal.override {
modules = [
"java.base"
];
jdk = jre_headless;
};
in
stdenv.mkDerivation rec {
pname = "pdftk";