mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 08:32:39 +03:00
11 lines
186 B
Nix
11 lines
186 B
Nix
{ pkgs, herb, urbit, ship }:
|
|
|
|
pkgs.stdenv.mkDerivation rec {
|
|
name = "test";
|
|
builder = ./builder.sh;
|
|
buildInputs = [ herb ];
|
|
|
|
URBIT = urbit.meta.exe;
|
|
SHIP = ship;
|
|
}
|