2020-01-22 22:40:37 +01:00
|
|
|
# Compatibility layer for minor MOP implementation differences
|
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.moptilities;
|
2020-02-21 13:47:29 +01:00
|
|
|
in depot.nix.buildLisp.library {
|
2020-01-22 22:40:37 +01:00
|
|
|
name = "moptilities";
|
2020-02-21 13:47:29 +01:00
|
|
|
deps = [ depot.third_party.lisp.closer-mop ];
|
2020-01-22 22:40:37 +01:00
|
|
|
srcs = [ "${src}/dev/moptilities.lisp" ];
|
2021-08-09 02:47:07 +02:00
|
|
|
|
|
|
|
brokenOn = [
|
|
|
|
"ecl" # TODO(sterni): https://gitlab.com/embeddable-common-lisp/ecl/-/issues/651
|
|
|
|
];
|
2020-01-22 22:40:37 +01:00
|
|
|
}
|