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"
|
||||
"ghostscript"
|
||||
"gobject-introspection"
|
||||
"gtk4"
|
||||
"imlib2"
|
||||
"libcaca"
|
||||
"pango"
|
||||
|
@ -140,6 +139,14 @@ in genAttrs [
|
|||
xineramaSupport = false;
|
||||
};
|
||||
|
||||
gtk4 = (prev.gtk4.overrideAttrs (prevAttrs: {
|
||||
buildInputs = prevAttrs.buildInputs or [ ]
|
||||
|> removePackages [ "libICE" "libSM" "libX.*" ];
|
||||
})).override {
|
||||
x11Support = false;
|
||||
xineramaSupport = false;
|
||||
};
|
||||
|
||||
imagemagick = prev.imagemagick.override {
|
||||
libX11Support = false;
|
||||
libXtSupport = false;
|
||||
|
|
Loading…
Reference in a new issue