shrub/nix/ops/fakeship/default.nix
Brendan Hay 578adc9363
build: move ops debug conditional usage to drv metadata
Rather than conditional reconstructing the "urbit/bin/urbit-debug -g"
string everytime using the debug conditional, this information has been
added to the derivation's .meta attribute.
2019-10-14 10:25:34 +02: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;
}