feat(3p/lisp): Add str package and dependencies

Change-Id: Iffb66f4580517b1dbfee8c79e766552508695e5f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11252
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Autosubmit: aspen <root@gws.fyi>
This commit is contained in:
Aspen Smith 2024-03-23 10:20:25 -04:00 committed by clbot
parent 87d5dd6371
commit d5f57ac6e6
3 changed files with 83 additions and 0 deletions

View file

@ -24,4 +24,16 @@ in depot.nix.buildLisp.library {
"scanner.lisp"
"api.lisp"
];
passthru = {
unicode = depot.nix.buildLisp.library {
name = "cl-ppcre-unicode";
deps = with depot.third_party.lisp; [ cl-ppcre cl-unicode ];
srcs = map (f: src + ("/cl-ppcre-unicode/" + f)) [
"packages.lisp"
"resolver.lisp"
];
};
};
}