mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-19 12:51:51 +03:00
20 lines
365 B
Nix
20 lines
365 B
Nix
|
{ pkgs, tlon, deps, pier, arvo, debug }:
|
||
|
|
||
|
let
|
||
|
|
||
|
urbitExe = if debug
|
||
|
then "${tlon.urbit-debug}/bin/urbit-debug -g"
|
||
|
else "${tlon.urbit}/bin/urbit";
|
||
|
|
||
|
in
|
||
|
|
||
|
pkgs.stdenv.mkDerivation rec {
|
||
|
name = "ivory";
|
||
|
builder = ./builder.sh;
|
||
|
buildInputs = [ tlon.herb pkgs.coreutils ];
|
||
|
|
||
|
URBIT = urbitExe;
|
||
|
PIER = pier;
|
||
|
ARVO = arvo;
|
||
|
}
|