summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-06-27 13:29:55 -0400
committerGitHub <noreply@github.com>2018-06-27 13:29:55 -0400
commit0d9112f01ae4b5398c6bd487c0ac4dc5e6c840f6 (patch)
tree4e10c222f6ac1c2512ede5d76ca6201d61a73929
parentb5337b357ffe1e54286d5a70e8c447bac935abec (diff)
downloadnixlib-0d9112f01ae4b5398c6bd487c0ac4dc5e6c840f6.tar
nixlib-0d9112f01ae4b5398c6bd487c0ac4dc5e6c840f6.tar.gz
nixlib-0d9112f01ae4b5398c6bd487c0ac4dc5e6c840f6.tar.bz2
nixlib-0d9112f01ae4b5398c6bd487c0ac4dc5e6c840f6.tar.lz
nixlib-0d9112f01ae4b5398c6bd487c0ac4dc5e6c840f6.tar.xz
nixlib-0d9112f01ae4b5398c6bd487c0ac4dc5e6c840f6.tar.zst
nixlib-0d9112f01ae4b5398c6bd487c0ac4dc5e6c840f6.zip
build-gradle-app.nix: mark unfree
Forgot about this. It needs android-sdk-license & build products should fail when allowUnfree = false.
-rw-r--r--pkgs/development/mobile/androidenv/build-gradle-app.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/mobile/androidenv/build-gradle-app.nix b/pkgs/development/mobile/androidenv/build-gradle-app.nix
index 1ca51fae1c29..e7708a522ba8 100644
--- a/pkgs/development/mobile/androidenv/build-gradle-app.nix
+++ b/pkgs/development/mobile/androidenv/build-gradle-app.nix
@@ -101,4 +101,8 @@ stdenv.mkDerivation ({
     mkdir -p $out/nix-support
     echo "file binary-dist \"$(echo $out/*.apk)\"" > $out/nix-support/hydra-build-products
   '';
+
+  meta = {
+    license = stdenv.lib.licenses.unfree
+  };
 } // builtins.removeAttrs args ["name" "mavenDeps"])