mirror of
https://github.com/urbit/shrub.git
synced 2024-12-01 06:35:32 +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
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;
|
|
}
|