xf86-input-mouse: Needs pixman

This commit is contained in:
Shea Levy 2012-07-15 22:55:12 -04:00
parent 4f01e68ff8
commit 27339f2ad8

View File

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