summary refs log tree commit diff
path: root/pkgs/development/mobile/titaniumenv
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2016-01-28 13:32:21 +0000
committerSander van der Burg <svanderburg@gmail.com>2016-01-28 13:32:21 +0000
commitb205b587e7ab22e5e5763646369ce63ffd2ee150 (patch)
tree941b49730693816566cd34a02381d0fc5e048563 /pkgs/development/mobile/titaniumenv
parentc67c27dc82ffc3da915d8c02cb6c41ac7011f33f (diff)
downloadnixpkgs-b205b587e7ab22e5e5763646369ce63ffd2ee150.tar
nixpkgs-b205b587e7ab22e5e5763646369ce63ffd2ee150.tar.gz
nixpkgs-b205b587e7ab22e5e5763646369ce63ffd2ee150.tar.bz2
nixpkgs-b205b587e7ab22e5e5763646369ce63ffd2ee150.tar.lz
nixpkgs-b205b587e7ab22e5e5763646369ce63ffd2ee150.tar.xz
nixpkgs-b205b587e7ab22e5e5763646369ce63ffd2ee150.tar.zst
nixpkgs-b205b587e7ab22e5e5763646369ce63ffd2ee150.zip
titaniumenv: remove obsolete iosWwdrCertificate parameter
Diffstat (limited to 'pkgs/development/mobile/titaniumenv')
-rw-r--r--pkgs/development/mobile/titaniumenv/examples/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/mobile/titaniumenv/examples/default.nix b/pkgs/development/mobile/titaniumenv/examples/default.nix
index be2ee419ff4..02e493a83c5 100644
--- a/pkgs/development/mobile/titaniumenv/examples/default.nix
+++ b/pkgs/development/mobile/titaniumenv/examples/default.nix
@@ -4,7 +4,7 @@
 , xcodeBaseDir ? "/Applications/Xcode.app"
 , tiVersion ? "5.1.1.GA"
 , rename ? false
-, newBundleId ? "com.example.kitchensink", iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? "Example", iosCertificatePassword ? "", iosVersion ? "9.2", iosWwdrCertificate ? null
+, newBundleId ? "com.example.kitchensink", iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? "Example", iosCertificatePassword ? "", iosVersion ? "9.2"
 , allowUnfree ? false
 , enableWirelessDistribution ? false, installURL ? null
 }:
@@ -84,7 +84,7 @@ rec {
       inherit tiVersion;
       release = true;
       rename = true;
-      inherit newBundleId iosMobileProvisioningProfile iosCertificate iosCertificateName iosCertificatePassword iosVersion iosWwdrCertificate;
+      inherit newBundleId iosMobileProvisioningProfile iosCertificate iosCertificateName iosCertificatePassword iosVersion;
       inherit enableWirelessDistribution installURL;
     };
   }