guix/make/examples/trivial/default.nix

9 lines
131 B
Nix

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