about summary refs log tree commit diff
path: root/make/examples/trivial/default.nix
blob: 132245e5823fafd7a4b8c0a796a23d7b958fe3da (plain) (blame)
1
2
3
4
5
6
7
8
let {

  inherit (import ../../lib) compileC link;

  hello = link {objects = compileC {main = ./hello.c;};};

  body = [hello];
}