mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 18:12:47 +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.
11 lines
186 B
Nix
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;
|
|
}
|