1 2 3 4 5 6 7 8 9 10 11
let { inherit (import ../../lib) compileC link; hello = link {objects = compileC { main = ./hello.c; localIncludes = [ [./hello.h "hello.h"] ]; };}; body = [hello]; }