chore(3p/lisp): use nixpkgs sources for s-xml

this one was a little more difficult because it needs a patch, there's
something wonky with the definition order

fwiw, the upstream cvs repository ... server errors.

Change-Id: I2d99359edec36b578389f1be1fcf077743c29c4e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4342
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
Vincent Ambo 2021-12-16 00:51:49 +03:00 committed by tazjin
parent 75ca24c60a
commit db742c2035
24 changed files with 43 additions and 2383 deletions

View file

@ -1,17 +1,23 @@
# XML serialiser for Common Lisp.
#
# This system was imported from a Quicklisp tarball at 's-xml-20150608'.
{ depot, ... }:
{ depot, pkgs, ... }:
depot.nix.buildLisp.library {
let src = pkgs.applyPatches {
name = "s-xml-source";
src = pkgs.lispPackages.s-xml.src;
patches = [
./0001-fix-definition-order-in-xml.lisp.patch
];
};
in depot.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
srcs = map (f: src + ("/src/" + f)) [
"package.lisp"
"xml.lisp"
"dom.lisp"
"lxml-dom.lisp"
"sxml-dom.lisp"
"xml-struct-dom.lisp"
];
}