Merge pull request #423 from offlinehacker/xf86videodummy
Add xf86videodummy and xf86inputvoid to xorg overrides (pixman fix)
This commit is contained in:
commit
afd5257336
1 changed files with 10 additions and 0 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue