mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
emacs: add missing libXi
dependency when enabling withXinput2
Without libXi, the configure flag `--with-xinput2` has no effect. This can be verified by looking up the variable `system-configuration-features` in Emacs.
This commit is contained in:
parent
c09a0604bf
commit
0efb400ade
@ -32,6 +32,7 @@
|
|||||||
, libXaw
|
, libXaw
|
||||||
, libXcursor
|
, libXcursor
|
||||||
, libXft
|
, libXft
|
||||||
|
, libXi
|
||||||
, libXpm
|
, libXpm
|
||||||
, libgccjit
|
, libgccjit
|
||||||
, libjpeg
|
, libjpeg
|
||||||
@ -274,6 +275,8 @@ mkDerivation (finalAttrs: {
|
|||||||
libpng
|
libpng
|
||||||
librsvg
|
librsvg
|
||||||
libtiff
|
libtiff
|
||||||
|
] ++ lib.optionals withXinput2 [
|
||||||
|
libXi
|
||||||
] ++ lib.optionals withXwidgets [
|
] ++ lib.optionals withXwidgets [
|
||||||
webkitgtk
|
webkitgtk
|
||||||
] ++ lib.optionals stdenv.isDarwin [
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
Loading…
Reference in New Issue
Block a user