shrub/nix/ops/ivory/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
224 B
Nix

{ pkgs, herb, urbit, pier, arvo }:
pkgs.stdenv.mkDerivation rec {
name = "ivory";
builder = ./builder.sh;
buildInputs = [ herb pkgs.coreutils ];
URBIT = urbit.meta.exe;
PIER = pier;
ARVO = arvo;
}