2020-01-22 01:23:09 +01:00
|
|
|
# Portable pathname library
|
2021-04-10 02:13:18 +02:00
|
|
|
{ depot, pkgs, ... }:
|
2020-01-22 01:23:09 +01:00
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
with depot.nix;
|
2020-01-27 00:59:07 +01:00
|
|
|
|
2021-12-14 22:32:27 +01:00
|
|
|
let src = with pkgs; srcOnly lispPackages.cl-fad;
|
2020-01-27 00:59:07 +01:00
|
|
|
in buildLisp.library {
|
2020-01-22 01:23:09 +01:00
|
|
|
name = "cl-fad";
|
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
deps = with depot.third_party.lisp; [
|
2020-01-22 01:23:09 +01:00
|
|
|
alexandria
|
|
|
|
bordeaux-threads
|
2021-08-09 02:47:07 +02:00
|
|
|
{
|
|
|
|
sbcl = buildLisp.bundled "sb-posix";
|
|
|
|
}
|
2020-01-22 01:23:09 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
srcs = map (f: src + ("/" + f)) [
|
|
|
|
"packages.lisp"
|
2021-08-13 22:24:50 +02:00
|
|
|
] ++ [
|
|
|
|
{ ccl = "${src}/openmcl.lisp"; }
|
|
|
|
] ++ map (f: src + ("/" + f)) [
|
2020-01-22 01:23:09 +01:00
|
|
|
"fad.lisp"
|
|
|
|
"path.lisp"
|
|
|
|
"temporary-files.lisp"
|
|
|
|
];
|
|
|
|
}
|