mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 18:12:47 +03:00
9068188e4b
578adc93
introduced a 'meta' attribute for handling, amongst other
things, conditional construction of the debug executable. It missed the
'solid' derivation, causing it to break.
12 lines
224 B
Nix
12 lines
224 B
Nix
{ pkgs, herb, urbit, pier, arvo }:
|
|
|
|
pkgs.stdenv.mkDerivation rec {
|
|
name = "solid";
|
|
builder = ./builder.sh;
|
|
buildInputs = [ herb pkgs.coreutils ];
|
|
|
|
URBIT = urbit.meta.exe;
|
|
PIER = pier;
|
|
ARVO = arvo;
|
|
}
|