xorg.ev: Needs libXrender

This commit is contained in:
Shea Levy 2012-07-15 03:36:48 -04:00
parent 1a0baad6b2
commit f0b7c9813b

View File

@ -150,6 +150,10 @@ in
buildInputs = attrs.buildInputs ++ [ args.freetype args.fontconfig ];
};
xev = attrs: attrs // {
buildInputs = attrs.buildInputs ++ [ xorg.libXrender ];
};
xf86inputevdev = attrs: attrs // {
preBuild = "sed -e '/motion_history_proc/d; /history_size/d;' -i src/*.c";
NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1";