summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-10-02 00:41:06 -0500
committerGitHub <noreply@github.com>2018-10-02 00:41:06 -0500
commitea857466e13647a2215d992ed66e65a898a339d4 (patch)
treef32db3de727fd8710dcbe61b9c1ee710ba449a87 /pkgs
parent3916f71a164a5b7d8cff246c15187ecabc416240 (diff)
parent132ed23f35547923f98b42af3f4ebf8d00ed1155 (diff)
downloadnixlib-ea857466e13647a2215d992ed66e65a898a339d4.tar
nixlib-ea857466e13647a2215d992ed66e65a898a339d4.tar.gz
nixlib-ea857466e13647a2215d992ed66e65a898a339d4.tar.bz2
nixlib-ea857466e13647a2215d992ed66e65a898a339d4.tar.lz
nixlib-ea857466e13647a2215d992ed66e65a898a339d4.tar.xz
nixlib-ea857466e13647a2215d992ed66e65a898a339d4.tar.zst
nixlib-ea857466e13647a2215d992ed66e65a898a339d4.zip
Merge pull request #47642 from enumatech/buildApp-meta
xcodeenv.buildApp: inherit meta
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/mobile/xcodeenv/build-app.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/mobile/xcodeenv/build-app.nix b/pkgs/development/mobile/xcodeenv/build-app.nix
index a94f2745894b..d7dd2d1190d8 100644
--- a/pkgs/development/mobile/xcodeenv/build-app.nix
+++ b/pkgs/development/mobile/xcodeenv/build-app.nix
@@ -20,6 +20,7 @@
 , bundleId ? null
 , version ? null
 , title ? null
+, meta ? {}
 }:
 
 assert release -> codeSignIdentity != null && certificateFile != null && certificatePassword != null && provisioningProfile != null && signMethod != null;
@@ -49,6 +50,7 @@ in
 stdenv.mkDerivation {
   name = stdenv.lib.replaceChars [" "] [""] name;
   inherit src;
+  inherit meta;
   buildInputs = [ xcodewrapper ];
   buildPhase = ''
     ${stdenv.lib.optionalString release ''