From 83afbf45caa4f6f06556a867b3e48218fb9ea2e1 Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Sat, 30 Mar 2013 11:52:44 +0100 Subject: [PATCH] Add xf86videodummy and xf86inputvoid to xorg overrides (pixman fix) --- pkgs/servers/x11/xorg/overrides.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index cba6a6d0cf4b..e9c310b84f17 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -153,6 +153,11 @@ in installFlags = "sdkdir=\${out}/include/xorg configdir=\${out}/include/xorg"; }; + xf86inputvoid = attrs: attrs // { + NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1"; + buildInputs = attrs.buildInputs ++ [xorg.pixman]; + }; + xf86videointel = attrs: attrs // { buildInputs = attrs.buildInputs ++ [xorg.glproto args.mesa]; }; @@ -172,6 +177,11 @@ in buildInputs = attrs.buildInputs ++ [xorg.pixman]; }; + xf86videodummy = 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];