mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 08:32:39 +03:00
23 lines
543 B
Nix
23 lines
543 B
Nix
{ lib, stdenvNoCC, fetchGitHubLFS, bootFakeShip, solid, urbit, arvo, curl
|
|
, withRopsten ? false }:
|
|
|
|
let
|
|
|
|
lfs = fetchGitHubLFS { src = ../../../bin/brass.pill; };
|
|
|
|
in {
|
|
build = import ./builder.nix {
|
|
inherit stdenvNoCC urbit curl;
|
|
|
|
name = "brass" + lib.optionalString withRopsten "-ropsten";
|
|
builder = ./brass.sh;
|
|
arvo = if withRopsten then arvo.ropsten else arvo;
|
|
pier = bootFakeShip {
|
|
inherit urbit;
|
|
|
|
pill = solid.lfs;
|
|
ship = "zod";
|
|
};
|
|
};
|
|
} // lib.optionalAttrs (!withRopsten) { inherit lfs; }
|