tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
We need to use ... to allow other parameters
Sander van der Burg
12 years ago
521ea15f
f24e20f1
+1
1 changed file
expand all
collapse all
unified
split
pkgs
development
mobile
androidenv
build-app.nix
+1
pkgs/development/mobile/androidenv/build-app.nix
···
1
1
{ stdenv, androidsdk, jdk, ant }:
2
2
args@{ name, src, platformVersions ? [ "8" ], useGoogleAPIs ? false, antFlags ? ""
3
3
, release ? false, keyStore ? null, keyAlias ? null, keyStorePassword ? null, keyAliasPassword ? null
4
4
+
, ...
4
5
}:
5
6
6
7
assert release -> keyStore != null && keyAlias != null && keyStorePassword != null && keyAliasPassword != null;