build: fix 'solid' derivation [ci skip]

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.
This commit is contained in:
Jared Tobin 2019-10-15 11:25:51 +04:00
parent 8a4a3335d5
commit 9068188e4b
No known key found for this signature in database
GPG Key ID: 0E4647D58F8A69E4

View File

@ -3,9 +3,9 @@
pkgs.stdenv.mkDerivation rec {
name = "solid";
builder = ./builder.sh;
buildInputs = [ herb ];
buildInputs = [ herb pkgs.coreutils ];
URBIT = urbit.exe;
URBIT = urbit.meta.exe;
PIER = pier;
ARVO = arvo;
}