treewide: stdenvNoCC.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-27 13:01:51 +07:00
parent db4cede416
commit 02ee14b9d5
13 changed files with 34 additions and 33 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ stdenvNoCC, runCommand, awscli }:
{ lib, stdenvNoCC, runCommand, awscli }:
{ s3url
, name ? builtins.baseNameOf s3url
@@ -16,7 +16,7 @@ let
AWS_SESSION_TOKEN = session_token;
};
credentialAttrs = stdenvNoCC.lib.optionalAttrs (credentials != null) (mkCredentials credentials);
credentialAttrs = lib.optionalAttrs (credentials != null) (mkCredentials credentials);
in runCommand name ({
nativeBuildInputs = [ awscli ];