2020-01-22 22:40:37 +01:00
|
|
|
# Closer to MOP is a compatibility layer that rectifies many of the
|
|
|
|
# absent or incorrect CLOS MOP features across a broad range of Common
|
|
|
|
# Lisp implementations
|
2021-04-10 02:13:18 +02:00
|
|
|
{ depot, pkgs, ... }:
|
2020-01-22 22:40:37 +01:00
|
|
|
|
2021-12-14 22:32:27 +01:00
|
|
|
let src = with pkgs; srcOnly lispPackages.closer-mop;
|
2020-02-21 13:47:29 +01:00
|
|
|
in depot.nix.buildLisp.library {
|
2020-01-22 22:40:37 +01:00
|
|
|
name = "closer-mop";
|
|
|
|
|
|
|
|
srcs = [
|
|
|
|
"${src}/closer-mop-packages.lisp"
|
|
|
|
"${src}/closer-mop-shared.lisp"
|
2021-08-09 02:47:07 +02:00
|
|
|
{
|
|
|
|
sbcl = "${src}/closer-sbcl.lisp";
|
|
|
|
ecl = "${src}/closer-ecl.lisp";
|
2021-08-13 22:24:50 +02:00
|
|
|
ccl = "${src}/closer-clozure.lisp";
|
2021-08-09 02:47:07 +02:00
|
|
|
}
|
2020-01-22 22:40:37 +01:00
|
|
|
];
|
|
|
|
}
|