Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.let-plus;
in depot.nix.buildLisp.library {
name = "let-plus";
deps = [
depot.third_party.lisp.alexandria
depot.third_party.lisp.anaphora
];
srcs = [
"${src}/package.lisp"
"${src}/let-plus.lisp"
"${src}/extensions.lisp"
}