9 lines
131 B
Nix
9 lines
131 B
Nix
|
let {
|
||
|
|
||
|
inherit (import ../../lib) compileC link;
|
||
|
|
||
|
hello = link {objects = compileC {main = ./hello.c;};};
|
||
|
|
||
|
body = [hello];
|
||
|
}
|