Revert "Remove enableGnome2 property from JDK derivation"

This reverts commit 32838d386a.
This commit is contained in:
2025-12-05 12:50:55 +01:00
parent 32838d386a
commit 75fb304107

View File

@@ -9,7 +9,10 @@
if buildPlatform == hostPlatform
then jdk21
else
jdk21.overrideAttrs (old: {
(jdk21.override {
# libIDL does not compile in cross-compile scenarios.
enableGnome2 = false;
}).overrideAttrs (old: {
# lol, nixpkgs cant get pkgs right
# AUTOCONF = "${autoconf}/bin/autoconf";
nativeBuildInputs = old.nativeBuildInputs ++ [which zip];