androidenv: rename stdenv.lib -> lib

Removes some visual clutter.
This commit is contained in:
Erik Arvstedt
2019-08-17 11:19:06 +02:00
parent 2ec43d3509
commit 1b81302d49
4 changed files with 34 additions and 41 deletions
@@ -10,12 +10,12 @@ rec {
};
buildApp = import ./build-app.nix {
inherit (pkgs) stdenv jdk ant gnumake gawk;
inherit (pkgs) stdenv lib jdk ant gnumake gawk;
inherit composeAndroidPackages;
};
emulateApp = import ./emulate-app.nix {
inherit (pkgs) stdenv;
inherit (pkgs) stdenv lib;
inherit composeAndroidPackages;
};