gtk3: Remove X inputs

This commit is contained in:
Mikael 2024-09-05 20:53:23 +02:00
parent 40c26507ad
commit df138ca4c5
Signed by: mikael
SSH key fingerprint: SHA256:21QyD2Meiot7jOUVitIR5YkGB/XuXdCvLW1hE6dsri0

View file

@ -15,7 +15,6 @@ in genAttrs [
"dbus" "dbus"
"ghostscript" "ghostscript"
"gobject-introspection" "gobject-introspection"
"gtk3"
"gtk4" "gtk4"
"imlib2" "imlib2"
"libcaca" "libcaca"
@ -133,6 +132,14 @@ in genAttrs [
}); });
}; };
gtk3 = (prev.gtk3.overrideAttrs (prevAttrs: {
propagatedBuildInputs = prevAttrs.propagatedBuildInputs or [ ]
|> removePackages [ "libICE" "libSM" "libX.*" ];
})).override {
x11Support = false;
xineramaSupport = false;
};
imagemagick = prev.imagemagick.override { imagemagick = prev.imagemagick.override {
libX11Support = false; libX11Support = false;
libXtSupport = false; libXtSupport = false;