urbit/nix/ops/test/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

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;
}