3
0
Fork 0
forked from mirrors/nixpkgs

xf86-input-keyboard: Needs pixman

This commit is contained in:
Shea Levy 2012-07-15 22:56:49 -04:00
parent 27339f2ad8
commit 5315a0bb6d

View file

@ -161,6 +161,11 @@ in
installFlags = "sdkdir=\${out}/include/xorg";
};
xf86inputkeyboard = attrs: attrs // {
NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1";
buildInputs = attrs.buildInputs ++ [xorg.pixman];
};
xf86inputmouse = attrs: attrs // {
NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1";
buildInputs = attrs.buildInputs ++ [xorg.pixman];