guix/make/examples/not-so-simple-header-auto/default.nix

14 lines
222 B
Nix

with import ../../lib;
let {
hello = link {programName = "hello"; objects = compileC {
main = ./foo/hello.c;
localIncludes = "auto";
};};
# body = findIncludes {main = ./foo/hello.c;};
body = [hello];
}