mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 02:11:38 +03:00
3c3f7e761e
* Move extraneous stuff out of pkg/urbit/* * s/urb/herb/g * Removed some boilerplate for `urbit` builds. * Build urbit tests and run them in the nix build.
11 lines
225 B
Nix
11 lines
225 B
Nix
{ pkgs, tlon, deps, urbit, fakezod, arvo }:
|
|
|
|
pkgs.stdenv.mkDerivation rec {
|
|
name = "solid";
|
|
builder = ./builder.sh;
|
|
buildInputs = [ urbit tlon.herb pkgs.coreutils ];
|
|
|
|
FAKEZOD = fakezod;
|
|
ARVO = arvo;
|
|
}
|