mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
9d5b48721d
These files don't even parse using `nix-instantiate --parse`: > error: undefined variable 'haskell-mode' > error: undefined variable 'lib' While these issues could be trivially fixed, the fact that these files are not even parsable by nix-instantiate shows me that they are probably unnecessary.
21 lines
654 B
Nix
21 lines
654 B
Nix
{pkgs, androidenv, xcodeenv, tiVersion ? "8.3.2.GA"}:
|
|
|
|
rec {
|
|
titaniumsdk = let
|
|
titaniumSdkFile = if tiVersion == "8.2.1.GA" then ./titaniumsdk-8.2.nix
|
|
else if tiVersion == "8.3.2.GA" then ./titaniumsdk-8.3.nix
|
|
else throw "Titanium version not supported: "+tiVersion;
|
|
in
|
|
import titaniumSdkFile {
|
|
inherit (pkgs) stdenv lib fetchurl unzip makeWrapper;
|
|
};
|
|
|
|
buildApp = import ./build-app.nix {
|
|
inherit (pkgs) stdenv lib python which file jdk nodejs titanium;
|
|
alloy = pkgs.titanium-alloy;
|
|
inherit (androidenv) composeAndroidPackages;
|
|
inherit (xcodeenv) composeXcodeWrapper;
|
|
inherit titaniumsdk;
|
|
};
|
|
}
|