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:
parent
75ca24c60a
commit
db742c2035
24 changed files with 43 additions and 2383 deletions
28
third_party/lisp/s-xml/default.nix
vendored
28
third_party/lisp/s-xml/default.nix
vendored
|
|
@ -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"
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue