mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
Merge pull request #47642 from enumatech/buildApp-meta
xcodeenv.buildApp: inherit meta
This commit is contained in:
commit
ea857466e1
|
@ -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 ''
|
||||
|
|
Loading…
Reference in a new issue