1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-15 06:52:43 +01:00
nix/examples/trivial/default.nix
2004-07-06 11:43:37 +00:00

8 lines
No EOL
130 B
Nix

let {
inherit (import ../../lib) compileC link;
hello = link {objects = compileC {main = ./hello.c;};};
body = [hello];
}