* 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:
Eelco Dolstra 2011-02-18 09:16:11 +00:00
parent d6c6f9f0e0
commit e5d12bbca7

View file

@ -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 = {