3
0
Fork 0
forked from mirrors/nixpkgs

xf86-video-cirrus: Needs pixman

This commit is contained in:
Shea Levy 2012-07-15 22:47:27 -04:00
parent 08e7a18a2c
commit ccceaba50a

View file

@ -177,6 +177,11 @@ in
buildInputs = attrs.buildInputs ++ [xorg.glproto args.mesa];
};
xf86videocirrus = attrs: attrs // {
NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1";
buildInputs = attrs.buildInputs ++ [xorg.pixman];
};
xf86videofbdev = attrs: attrs // {
NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1";
buildInputs = attrs.buildInputs ++ [xorg.pixman];