about summary refs log tree commit diff
path: root/pkgs/games/humblebundle/ftl.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/humblebundle/ftl.nix')
-rw-r--r--pkgs/games/humblebundle/ftl.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/humblebundle/ftl.nix b/pkgs/games/humblebundle/ftl.nix
index 5fd20a9f..552ca036 100644
--- a/pkgs/games/humblebundle/ftl.nix
+++ b/pkgs/games/humblebundle/ftl.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchHumbleBundle, makeWrapper, SDL, libGL, libdevil, freetype }:
+{ stdenv, lib, fetchHumbleBundle, makeWrapper, SDL, libGL, libdevil, freetype }:
 
 stdenv.mkDerivation rec {
   name = "ftl-${version}";
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ makeWrapper ];
 
   patchPhase = let
-    rpath = stdenv.lib.makeLibraryPath [
+    rpath = lib.makeLibraryPath [
       SDL "$out" stdenv.cc.cc libGL libdevil freetype
     ];
   in ''