urbit/nix/ops/solid/default.nix
Jared Tobin 9068188e4b
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.
2019-10-15 11:56:16 +04:00

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;
}