mirror of
https://github.com/urbit/shrub.git
synced 2024-12-11 11:02:25 +03:00
ade1e59ce1
* Add cross-compilation for `lmdb`. * Got built caching working in CI with `cachix`. * Cache cross compilation dependencies and toolchains. * Do release builds in CI. * Upload release builds to `bootstrap.urbit.org` on successful build. * Lots of optimization work for CI. * Boot from a solid pill in CI and load arvo with `-A`. * Increase `vere` HTTP timeout to 15m.
20 lines
365 B
Nix
20 lines
365 B
Nix
{ pkgs, tlon, deps, pier, arvo, debug }:
|
|
|
|
let
|
|
|
|
urbitExe = if debug
|
|
then "${tlon.urbit-debug}/bin/urbit-debug -g"
|
|
else "${tlon.urbit}/bin/urbit";
|
|
|
|
in
|
|
|
|
pkgs.stdenv.mkDerivation rec {
|
|
name = "brass";
|
|
builder = ./builder.sh;
|
|
buildInputs = [ tlon.herb pkgs.coreutils ];
|
|
|
|
URBIT = urbitExe;
|
|
PIER = pier;
|
|
ARVO = arvo;
|
|
}
|