2019-03-05 03:43:53 +03:00
|
|
|
let
|
|
|
|
|
|
|
|
nixpkgs = import ./nixpkgs.nix;
|
|
|
|
nixcrpkgs = import ./nixcrpkgs.nix;
|
|
|
|
crossdeps = import ./crossdeps.nix;
|
|
|
|
|
|
|
|
release =
|
|
|
|
env_name: env: {
|
|
|
|
inherit env env_name;
|
|
|
|
deps = crossdeps env;
|
|
|
|
};
|
|
|
|
|
|
|
|
linux64 = release "linux64" nixcrpkgs.linux64;
|
|
|
|
darwin = release "darwin" nixcrpkgs.mac;
|
|
|
|
|
|
|
|
ent = env:
|
|
|
|
import ./pkgs/ent/cross.nix env;
|
|
|
|
|
2019-06-25 00:41:54 +03:00
|
|
|
ge-additions = env:
|
|
|
|
import ./pkgs/ge-additions/cross.nix env;
|
|
|
|
|
2019-03-05 03:43:53 +03:00
|
|
|
urbit = env:
|
|
|
|
import ./pkgs/urbit/release.nix env
|
2019-08-02 23:51:38 +03:00
|
|
|
{ ent = ent env; ge-additions = ge-additions env; debug = false; name = "urbit"; };
|
2019-03-05 03:43:53 +03:00
|
|
|
|
2019-05-02 23:13:48 +03:00
|
|
|
builds-for-platform = plat:
|
|
|
|
plat.deps // {
|
|
|
|
inherit (plat.env) curl libgmp libsigsegv ncurses openssl zlib lmdb;
|
|
|
|
inherit (plat.env) cmake_toolchain;
|
2019-06-25 00:41:54 +03:00
|
|
|
ent = ent plat;
|
|
|
|
ge-additions = ge-additions plat;
|
|
|
|
urbit = urbit plat;
|
2019-05-02 23:13:48 +03:00
|
|
|
};
|
2019-03-05 03:43:53 +03:00
|
|
|
|
2019-05-02 23:13:48 +03:00
|
|
|
darwin_extra = {
|
|
|
|
inherit (darwin.env) ranlib ld sdk ar toolchain tapi strip;
|
2019-03-05 03:43:53 +03:00
|
|
|
};
|
|
|
|
|
2019-05-02 23:13:48 +03:00
|
|
|
in
|
2019-03-05 03:43:53 +03:00
|
|
|
|
2019-05-02 23:13:48 +03:00
|
|
|
{
|
|
|
|
linux64 = builds-for-platform linux64;
|
|
|
|
darwin = darwin_extra // builds-for-platform darwin;
|
2019-03-05 03:43:53 +03:00
|
|
|
}
|