Reintroduce licenseAccepted option

This commit is contained in:
Sander van der Burg
2018-12-05 21:37:13 +01:00
parent b99ac1c904
commit 3bfd3e73bf
3 changed files with 11 additions and 3 deletions

View File

@@ -1,11 +1,12 @@
{ pkgs ? import <nixpkgs> {}
, pkgs_i686 ? import <nixpkgs> { system = "i686-linux"; }
, licenseAccepted ? false
}:
rec {
composeAndroidPackages = import ./compose-android-packages.nix {
inherit (pkgs) stdenv fetchurl requireFile makeWrapper unzip autoPatchelfHook;
inherit pkgs pkgs_i686;
inherit pkgs pkgs_i686 licenseAccepted;
};
buildApp = import ./build-app.nix {