2021-04-12 00:17:41 +02:00
|
|
|
# A shortcut macro to write DEFCLASS forms quickly
|
|
|
|
# Seems to be unmaintained (since early 2021)
|
2020-07-22 00:53:18 +02:00
|
|
|
{ depot, pkgs, ... }:
|
|
|
|
|
2021-12-14 22:32:27 +01:00
|
|
|
let src = with pkgs; srcOnly lispPackages.defclass-std;
|
2020-07-22 00:53:18 +02:00
|
|
|
in depot.nix.buildLisp.library {
|
|
|
|
name = "defclass-std";
|
|
|
|
deps = with depot.third_party.lisp; [
|
|
|
|
alexandria
|
|
|
|
anaphora
|
|
|
|
];
|
|
|
|
|
|
|
|
srcs = map (f: src + ("/src/" + f)) [
|
|
|
|
"defclass-std.lisp"
|
|
|
|
];
|
|
|
|
}
|