mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #1369 from offlinehacker/pkgs/ati-drivers/aticonfig_fix
ati-drivers: fix aticonfig segmentation fault
This commit is contained in:
commit
fb9e61ef02
1 changed files with 2 additions and 1 deletions
|
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
|||
patchPhase = "patch -p0 < ${./gentoo-patches.patch}";
|
||||
|
||||
buildInputs =
|
||||
[ xlibs.libXext xlibs.libX11
|
||||
[ xlibs.libXext xlibs.libX11 xlibs.libXinerama
|
||||
xlibs.libXrandr which imake makeWrapper
|
||||
patchelf
|
||||
unzip
|
||||
|
@ -54,6 +54,7 @@ stdenv.mkDerivation rec {
|
|||
"${xorg.libXrender}/lib"
|
||||
"${xorg.libXext}/lib"
|
||||
"${xorg.libX11}/lib"
|
||||
"${xorg.libXinerama}/lib"
|
||||
];
|
||||
|
||||
# without this some applications like blender don't start, but they start
|
||||
|
|
Loading…
Reference in a new issue