about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <Vincent Ambo>2020-01-09T01·13+0000
committerVincent Ambo <Vincent Ambo>2020-01-09T01·13+0000
commit815574ad5f0e19939a0afc403b222145d5b01b67 (patch)
tree5b73c88f0c4fa2968bded215845424d4f4050e41 /third_party
parent67170024d2b25d6eb3a5b3c6c3abe42aebf535da (diff)
feat(third_party/lisp): Add derivation for trivial-gray-streams r/360
Diffstat (limited to 'third_party')
-rw-r--r--third_party/lisp/trivial-gray-streams.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/lisp/trivial-gray-streams.nix b/third_party/lisp/trivial-gray-streams.nix
new file mode 100644
index 0000000000..3d91f81209
--- /dev/null
+++ b/third_party/lisp/trivial-gray-streams.nix
@@ -0,0 +1,16 @@
+# Portability library for CL gray streams.
+{ pkgs, ... }:
+
+let src = builtins.fetchGit {
+  url = "https://github.com/trivial-gray-streams/trivial-gray-streams.git";
+  rev = "ebd59b1afed03b9dc8544320f8f432fdf92ab010";
+};
+in pkgs.nix.buildLisp.library {
+  name = "trivial-gray-streams";
+  srcs = [
+    (src + "/package.lisp")
+    (src + "/streams.lisp")
+  ];
+}
+
+