about summary refs log tree commit diff
path: root/make/examples/trivial/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'make/examples/trivial/default.nix')
-rw-r--r--make/examples/trivial/default.nix8
1 files changed, 0 insertions, 8 deletions
diff --git a/make/examples/trivial/default.nix b/make/examples/trivial/default.nix
deleted file mode 100644
index 132245e5823f..000000000000
--- a/make/examples/trivial/default.nix
+++ /dev/null
@@ -1,8 +0,0 @@
-let {
-
-  inherit (import ../../lib) compileC link;
-
-  hello = link {objects = compileC {main = ./hello.c;};};
-
-  body = [hello];
-}