gtk4: Remove X inputs
This commit is contained in:
parent
df138ca4c5
commit
773108c5ea
1 changed files with 8 additions and 1 deletions
|
@ -15,7 +15,6 @@ in genAttrs [
|
||||||
"dbus"
|
"dbus"
|
||||||
"ghostscript"
|
"ghostscript"
|
||||||
"gobject-introspection"
|
"gobject-introspection"
|
||||||
"gtk4"
|
|
||||||
"imlib2"
|
"imlib2"
|
||||||
"libcaca"
|
"libcaca"
|
||||||
"pango"
|
"pango"
|
||||||
|
@ -140,6 +139,14 @@ in genAttrs [
|
||||||
xineramaSupport = false;
|
xineramaSupport = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
gtk4 = (prev.gtk4.overrideAttrs (prevAttrs: {
|
||||||
|
buildInputs = prevAttrs.buildInputs 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;
|
||||||
|
|
Loading…
Reference in a new issue