mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
titaniumsdk: Add version 3.4.0 support
This commit is contained in:
parent
da9c4c05eb
commit
2b5a27c3d8
2 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, pkgs_i686, xcodeVersion ? "5.0", tiVersion ? "3.2.3.GA"}:
|
{pkgs, pkgs_i686, xcodeVersion ? "5.0", tiVersion ? "3.4.0.GA"}:
|
||||||
|
|
||||||
let
|
let
|
||||||
# We have to use Oracle's JDK. On Darwin, just simply expose the host system's
|
# We have to use Oracle's JDK. On Darwin, just simply expose the host system's
|
||||||
|
@ -31,6 +31,7 @@ rec {
|
||||||
titaniumSdkFile = if tiVersion == "3.1.4.GA" then ./titaniumsdk-3.1.nix
|
titaniumSdkFile = if tiVersion == "3.1.4.GA" then ./titaniumsdk-3.1.nix
|
||||||
else if tiVersion == "3.2.3.GA" then ./titaniumsdk-3.2.nix
|
else if tiVersion == "3.2.3.GA" then ./titaniumsdk-3.2.nix
|
||||||
else if tiVersion == "3.3.0.GA" then ./titaniumsdk-3.3.nix
|
else if tiVersion == "3.3.0.GA" then ./titaniumsdk-3.3.nix
|
||||||
|
else if tiVersion == "3.4.0.GA" then ./titaniumsdk-3.4.nix
|
||||||
else throw "Titanium version not supported: "+tiVersion;
|
else throw "Titanium version not supported: "+tiVersion;
|
||||||
in
|
in
|
||||||
import titaniumSdkFile {
|
import titaniumSdkFile {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ nixpkgs ? <nixpkgs>
|
{ nixpkgs ? <nixpkgs>
|
||||||
, systems ? [ "x86_64-linux" "x86_64-darwin" ]
|
, systems ? [ "x86_64-linux" "x86_64-darwin" ]
|
||||||
, xcodeVersion ? "5.0"
|
, xcodeVersion ? "5.0"
|
||||||
, tiVersion ? "3.2.3.GA"
|
, tiVersion ? "3.4.0.GA"
|
||||||
, rename ? false
|
, rename ? false
|
||||||
, newBundleId ? "com.example.kitchensink", iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? "Example", iosCertificatePassword ? ""
|
, newBundleId ? "com.example.kitchensink", iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? "Example", iosCertificatePassword ? ""
|
||||||
, allowUnfree ? false
|
, allowUnfree ? false
|
||||||
|
|
Loading…
Reference in a new issue