* Disable swrast_dri.so because it doesn't work properly (NixOS/121).
svn path=/nixpkgs/branches/x-updates/; revision=26020
This commit is contained in:
parent
d6c6f9f0e0
commit
e5d12bbca7
1 changed files with 7 additions and 0 deletions
|
@ -26,6 +26,13 @@ stdenv.mkDerivation {
|
|||
lipo talloc
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
# Remove swrast_dri.so. If it's available, the X server will use
|
||||
# it, but it doesn't work properly (giving corrupt output or
|
||||
# crashing the server). (NixOS/121)
|
||||
postInstall = "rm -f $out/lib/dri/swrast_dri.so";
|
||||
|
||||
passthru = { inherit libdrm; };
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue