mirror of
https://github.com/urbit/shrub.git
synced 2024-11-29 06:45:42 +03:00
20 lines
322 B
Nix
20 lines
322 B
Nix
{ pkgs ? import ../nixpkgs.nix
|
|
, debug ? false
|
|
, ship ? "zod"
|
|
, pill ? ../../bin/solid.pill
|
|
}:
|
|
|
|
let
|
|
|
|
deps = import ../deps { inherit pkgs; };
|
|
tlon = import ../pkgs { inherit pkgs; };
|
|
arvo = tlon.arvo;
|
|
urbit = tlon.urbit;
|
|
herb = tlon.herb;
|
|
|
|
in
|
|
|
|
import ./fakeship {
|
|
inherit pkgs arvo pill ship urbit herb;
|
|
}
|