mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 08:32:39 +03:00
12 lines
256 B
Nix
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;
|
|
}
|