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/steam/fetchsteam/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'pkgs/games/steam/fetchsteam') diff --git a/pkgs/games/steam/fetchsteam/default.nix b/pkgs/games/steam/fetchsteam/default.nix index 646e0a14..0dc609de 100644 --- a/pkgs/games/steam/fetchsteam/default.nix +++ b/pkgs/games/steam/fetchsteam/default.nix @@ -1,4 +1,4 @@ -{ stdenv, runCommand, writeText, fetchFromGitHub, buildDotnetPackage +{ stdenv, lib, runCommand, writeText, fetchFromGitHub, buildDotnetPackage , username, password }: @@ -65,18 +65,18 @@ let # without that nasty wrapper. makeWrapperArgs = let mkMono = name: path: "${path}/lib/dotnet/${name}"; - paths = stdenv.lib.mapAttrsToList mkMono { + paths = lib.mapAttrsToList mkMono { inherit SteamKit2 protobuf-net; }; - monoPath = stdenv.lib.concatStringsSep ":" paths; + monoPath = lib.concatStringsSep ":" paths; in [ "--prefix MONO_PATH : \"${monoPath}\"" ]; }; fileListFile = let - content = stdenv.lib.concatStringsSep "\n" fileList; + content = lib.concatStringsSep "\n" fileList; in writeText "steam-file-list-${name}.txt" content; -in with stdenv.lib; runCommand "${name}-src" { +in with lib; runCommand "${name}-src" { buildInputs = [ DepotDownloader ]; inherit username password appId depotId manifestId; preferLocalBuild = true; -- cgit 1.4.1