From 8066d9de0a18664336616e602bb06220a9553de4 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 21 Apr 2018 03:05:36 +0200 Subject: pkgs/games: Replace usages of mesa with libGL This has been changed in NixOS/nixpkgs@6bf1421f13d667c2997b67728cf777c6, so let's change it here as well. Quote from the mentioned commit: Implement libGL as a symlink package which uses libraries from libglvnd and headers from Mesa (since ones from libglvnd are outdated). Signed-off-by: aszlig --- pkgs/games/humblebundle/brigador.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/games/humblebundle/brigador.nix') diff --git a/pkgs/games/humblebundle/brigador.nix b/pkgs/games/humblebundle/brigador.nix index 1e3be1cb..71fbea28 100644 --- a/pkgs/games/humblebundle/brigador.nix +++ b/pkgs/games/humblebundle/brigador.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, makeWrapper, fetchHumbleBundle, writeText -, SDL2, mesa, glew, freeimage +, SDL2, libGL, glew, freeimage }: let @@ -64,7 +64,7 @@ in stdenv.mkDerivation { patchPhase = let fmodRpath = stdenv.lib.makeLibraryPath [ "$out" stdenv.cc.cc ]; - rpath = stdenv.lib.makeLibraryPath [ "$out" SDL2 mesa oldGLEW freeimage ]; + rpath = stdenv.lib.makeLibraryPath [ "$out" SDL2 libGL oldGLEW freeimage ]; in '' for fmod in lib/libfmod*.so*; do patchelf --set-rpath "${fmodRpath}" "$fmod" -- cgit 1.4.1