about summary refs log tree commit diff
path: root/pkgs/games/humblebundle/guacamelee.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/humblebundle/guacamelee.nix')
-rw-r--r--pkgs/games/humblebundle/guacamelee.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/humblebundle/guacamelee.nix b/pkgs/games/humblebundle/guacamelee.nix
index 5cc39837..667f35fc 100644
--- a/pkgs/games/humblebundle/guacamelee.nix
+++ b/pkgs/games/humblebundle/guacamelee.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchHumbleBundle, unzip, SDL2, libGL, writeText, makeWrapper }:
+{ stdenv, lib, fetchHumbleBundle, unzip, SDL2, libGL, writeText, makeWrapper }:
 
 stdenv.mkDerivation rec {
   name = "guacamelee-${version}";
@@ -27,8 +27,8 @@ stdenv.mkDerivation rec {
   buildInputs = [ makeWrapper ];
 
   buildPhase = let
-    rpath = stdenv.lib.makeLibraryPath [ SDL2 stdenv.cc.cc libGL ];
-    fmodRpath = stdenv.lib.makeLibraryPath [ stdenv.cc.cc ];
+    rpath = lib.makeLibraryPath [ SDL2 stdenv.cc.cc libGL ];
+    fmodRpath = lib.makeLibraryPath [ stdenv.cc.cc ];
   in ''
     gcc -Werror -shared "$preloader" -o preloader.so -ldl \
       -DDATA=\"$out/share/guacamelee\"