mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 08:32:39 +03:00
24 lines
404 B
Nix
24 lines
404 B
Nix
{ stdenvNoCC, fetchGitHubLFS, bootFakeShip, solid, urbit, arvo, curl }:
|
|
|
|
let
|
|
|
|
lfs = fetchGitHubLFS { src = ../../../bin/solid.pill; };
|
|
|
|
in {
|
|
inherit lfs;
|
|
|
|
build = import ./builder.nix {
|
|
inherit stdenvNoCC urbit arvo curl;
|
|
|
|
name = "solid";
|
|
builder = ./solid.sh;
|
|
pier = bootFakeShip {
|
|
inherit urbit;
|
|
|
|
arvo = null;
|
|
pill = solid.lfs;
|
|
ship = "zod";
|
|
};
|
|
};
|
|
}
|