From d2793017cad11d290dad64f5122b2d2668e2d467 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Fri, 5 Feb 2021 11:44:45 +0100 Subject: treewide: stdenv.lib -> pkgs.lib MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upstream is deprecating `stdenv.lib`, so let’s do the same. --- pkgs/games/humblebundle/pico-8.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/games/humblebundle/pico-8.nix') diff --git a/pkgs/games/humblebundle/pico-8.nix b/pkgs/games/humblebundle/pico-8.nix index d7337065..eaf84d0d 100644 --- a/pkgs/games/humblebundle/pico-8.nix +++ b/pkgs/games/humblebundle/pico-8.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchHumbleBundle, SDL2, unzip, xorg, libudev, alsaLib, dbus +{ stdenv, lib, fetchHumbleBundle, SDL2, unzip, xorg, libudev, alsaLib, dbus , libpulseaudio, libdrm, libvorbis, json_c }: stdenv.mkDerivation rec { @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { phases = [ "unpackPhase" "buildPhase" "installPhase" ]; buildPhase = let - rpath = stdenv.lib.makeLibraryPath [ + rpath = lib.makeLibraryPath [ stdenv.cc.cc SDL2 xorg.libXxf86vm xorg.libXcursor xorg.libXi xorg.libXrandr libudev alsaLib dbus libpulseaudio libdrm libvorbis json_c -- cgit 1.4.1