mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 18:12:47 +03:00
8 lines
122 B
Nix
8 lines
122 B
Nix
|
{ crossenv }:
|
||
|
|
||
|
crossenv.make_derivation rec {
|
||
|
name = "hello_cpp";
|
||
|
src_file = ./hello.cpp;
|
||
|
builder = ./builder.sh;
|
||
|
}
|