about summary refs log tree commit diff
path: root/pkgs/games/humblebundle/spaz.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2021-02-05 11:44:45 +0100
committerProfpatsch <mail@profpatsch.de>2021-02-05 12:27:24 +0100
commitd2793017cad11d290dad64f5122b2d2668e2d467 (patch)
treea694f2a70c590fab56221301bbfae69c36d21455 /pkgs/games/humblebundle/spaz.nix
parentf0b9d862a5e54fa7f9159636ce5a90ef3360231f (diff)
treewide: stdenv.lib -> pkgs.lib
Upstream is deprecating `stdenv.lib`, so let’s do the same.
Diffstat (limited to 'pkgs/games/humblebundle/spaz.nix')
-rw-r--r--pkgs/games/humblebundle/spaz.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/humblebundle/spaz.nix b/pkgs/games/humblebundle/spaz.nix
index 24d32e53..7dd6d03d 100644
--- a/pkgs/games/humblebundle/spaz.nix
+++ b/pkgs/games/humblebundle/spaz.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
   dontStrip = true;
 
   buildPhase = let
-    libs = pkgsi686Linux.stdenv.lib.makeLibraryPath [
+    libs = pkgsi686Linux.lib.makeLibraryPath [
       pkgsi686Linux.stdenv.cc.cc pkgsi686Linux.SDL
     ];
   in ''
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
   '';
 
   installPhase = let
-    libs = pkgsi686Linux.stdenv.lib.makeLibraryPath [
+    libs = pkgsi686Linux.lib.makeLibraryPath [
       pkgsi686Linux.libGL pkgsi686Linux.openal pkgsi686Linux.alsaPlugins
     ];
   in ''