shrub/nix/ops/fakeship/default.nix
2019-10-14 16:02:27 -04:00

12 lines
256 B
Nix

{ pkgs, herb, urbit, pill, ship, arvo }:
pkgs.stdenv.mkDerivation {
name = "fake" + ship;
builder = ./builder.sh;
buildInputs = [ herb ];
URBIT = urbit.meta.exe;
ARVO = arvo;
PILL = pill;
SHIP = ship;
}