mirror of
https://github.com/urbit/shrub.git
synced 2024-12-13 06:25:09 +03:00
578adc9363
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.
12 lines
224 B
Nix
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;
|
|
}
|