diff options
Diffstat (limited to 'universe/third_party/lisp/let-plus.nix')
-rw-r--r-- | universe/third_party/lisp/let-plus.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/universe/third_party/lisp/let-plus.nix b/universe/third_party/lisp/let-plus.nix deleted file mode 100644 index a3a15776bf86..000000000000 --- a/universe/third_party/lisp/let-plus.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ - depot ? import <depot> {}, - universe ? import <universe> {}, - ... -}: - -let - src = builtins.fetchGit { - url = "https://github.com/tpapp/let-plus.git"; - rev = "7cf18b29ed0fe9c667a9a6a101b08ab9661a59e9"; - }; -in depot.nix.buildLisp.library { - name = "let-plus"; - deps = [ - depot.third_party.lisp.alexandria - universe.third_party.lisp.anaphora - ]; - srcs = [ - "${src}/package.lisp" - "${src}/let-plus.lisp" - "${src}/extensions.lisp" - ]; -} |