diff options
Diffstat (limited to 'common-lisp/anaphora.nix')
-rw-r--r-- | common-lisp/anaphora.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/common-lisp/anaphora.nix b/common-lisp/anaphora.nix new file mode 100644 index 000000000000..f64d01a50eee --- /dev/null +++ b/common-lisp/anaphora.nix @@ -0,0 +1,17 @@ +{ tpkgs ? (import (builtins.fetchGit "https://git.tazj.in/") {}), ... }: + +let + src = builtins.fetchGit { + url = "https://github.com/tokenrove/anaphora.git"; + rev = "aeace4c68cf55098a67112750b28f8f2dc6d0e30"; + }; +in tpkgs.nix.buildLisp.library { + name = "anaphora"; + deps = []; + srcs = [ + "${src}/packages.lisp" + "${src}/early.lisp" + "${src}/symbolic.lisp" + "${src}/anaphora.lisp" + ]; +} |