xorg: evdev and fbdev need pixman

This commit is contained in:
Shea Levy 2012-07-14 16:26:22 -04:00
parent fdf6f17a1b
commit 65ac9694c7

View File

@ -152,7 +152,8 @@ in
xf86inputevdev = attrs: attrs // {
preBuild = "sed -e '/motion_history_proc/d; /history_size/d;' -i src/*.c";
buildInputs = attrs.buildInputs ++ [xorg.kbproto xorg.libxkbfile xorg.randrproto];
NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1";
buildInputs = attrs.buildInputs ++ [xorg.kbproto xorg.libxkbfile xorg.randrproto xorg.pixman];
installFlags = "sdkdir=\${out}/include/xorg";
};
@ -172,6 +173,11 @@ in
buildInputs = attrs.buildInputs ++ [xorg.glproto args.mesa];
};
xf86videofbdev = attrs: attrs // {
NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1";
buildInputs = attrs.buildInputs ++ [xorg.pixman];
};
xf86videoopenchrome = attrs: attrs // rec {
name = "xf86-video-openchrome-0.2.905";
src = args.fetchurl {