gtk3: Remove X inputs
This commit is contained in:
parent
40c26507ad
commit
df138ca4c5
1 changed files with 8 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue