about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-04-05T14·20+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-04-05T14·20+0100
commit61c6a502852374c59ae668ca20adef5131b30f09 (patch)
tree263690a9d1cbd700fa86373c956a713b9b7b09a2
parentb2663788500b0d85527781667b7c2cd6329724ed (diff)
Delete //clojure
Deleting my early sketches of how I would like a Nix expression that
built Clojure packages, libraries, and executables to look like.
-rw-r--r--clojure/buildClojure.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/clojure/buildClojure.nix b/clojure/buildClojure.nix
deleted file mode 100644
index 53188b06d861..000000000000
--- a/clojure/buildClojure.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ briefcase, ... }:
-
-briefcase.nix.buildClojure.program {
-  name = "test";
-  deps = with briefcase.third_party.clojure; [
-
-  ];
-  srcs = [
-    ./main.clj
-  ]
-}