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

* ATerm library example.

This commit is contained in:
Eelco Dolstra 2004-07-06 17:27:11 +00:00
parent 17e20716c0
commit f1ed34081e
5 changed files with 50 additions and 1 deletions

View file

@ -4,7 +4,7 @@ let {
hello = link {programName = "hello"; objects = compileC {
main = ./foo/hello.c;
localIncludes = import (findIncludes {main = toString ./foo/hello.c;});
localIncludes = "auto";
};};
body = [hello];