summary refs log tree commit diff
path: root/pkgs/development/mobile/titaniumenv/examples/kitchensink/default.nix
blob: b195bfcae7a2587167d162ce5fe5c0a66a5c6085 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{titaniumenv, fetchgit, target, androidPlatformVersions ? [ "11" ]}:

titaniumenv.buildApp {
  name = "KitchenSink-${target}";
  appName = "KitchenSink";
  appId = "com.appcelerator.kitchensink";
  src = fetchgit {
    url = https://github.com/appcelerator/KitchenSink.git;
    rev = "b68757ef6639e3da564e21038dc9c1aee1f80907";
    sha256 = "17yabdkl0p6pf2a2lcgw1kid2smwc8rnpx0i9fa4avj6930cbh5i";
  };
  
  inherit target androidPlatformVersions;
  
  /*release = true;
  androidKeyStore = /home/sander/keystore;
  androidKeyAlias = "sander";
  androidKeyStorePassword = "foobar";*/
  
  /*release = true;
  iosKeyFile = /Users/sander/Downloads/profile.mobileprovision;
  iosCertificateName = "My Company";
  iosCertificate = /Users/sander/Downloads/c.p12;
  iosCertificatePassword = "";*/
}