about summary refs log tree commit diff
path: root/third_party/lisp/s-xml/default.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-01-22T00·49+0000
committerVincent Ambo <tazjin@google.com>2020-01-22T00·49+0000
commit437efa7686f62c88f6b377a255715fa0c28ed2c7 (patch)
treecaba3ba35513c9fc794ff8d78c82b67b274bcd52 /third_party/lisp/s-xml/default.nix
parentfe3ea06cbc32c9b727549a6505e69234f3072f6f (diff)
feat(third_party/lisp/s-xml): Check in sources & derivation r/438
Checked in the sources for this because it is tracked upstream in CVS
and I can't be bothered to deal with that right now.
Diffstat (limited to 'third_party/lisp/s-xml/default.nix')
-rw-r--r--third_party/lisp/s-xml/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/third_party/lisp/s-xml/default.nix b/third_party/lisp/s-xml/default.nix
new file mode 100644
index 0000000000..884846a30f
--- /dev/null
+++ b/third_party/lisp/s-xml/default.nix
@@ -0,0 +1,17 @@
+# XML serialiser for Common Lisp.
+#
+# This system was imported from a Quicklisp tarball at 's-xml-20150608'.
+{ pkgs, ... }:
+
+pkgs.nix.buildLisp.library {
+  name = "s-xml";
+
+  srcs = [
+    ./src/package.lisp
+    ./src/xml.lisp
+    ./src/dom.lisp
+    ./src/lxml-dom.lisp
+    ./src/sxml-dom.lisp
+    ./src/xml-struct-dom.lisp
+  ];
+}