pkgs/development/mobile: stdenv.lib -> lib

This commit is contained in:
Pavol Rusnak
2021-01-21 20:45:23 +01:00
parent 7ed3d2df76
commit c3bbfb77ad
11 changed files with 42 additions and 42 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
{stdenv}:
{ stdenv, lib }:
rec {
composeXcodeWrapper = import ./compose-xcodewrapper.nix {
@@ -6,10 +6,10 @@ rec {
};
buildApp = import ./build-app.nix {
inherit stdenv composeXcodeWrapper;
inherit stdenv lib composeXcodeWrapper;
};
simulateApp = import ./simulate-app.nix {
inherit stdenv composeXcodeWrapper;
inherit stdenv lib composeXcodeWrapper;
};
}