mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-16 10:49:26 +03:00
11 lines
211 B
Nix
11 lines
211 B
Nix
|
{ pkgs, tlon, deps, urbit, ship, arvo }:
|
||
|
|
||
|
pkgs.stdenv.mkDerivation rec {
|
||
|
name = "test";
|
||
|
builder = ./builder.sh;
|
||
|
buildInputs = [ urbit tlon.urb pkgs.coreutils ];
|
||
|
|
||
|
SHIP = ship;
|
||
|
ARVO = arvo;
|
||
|
}
|