tvl-depot/third_party/lisp/let-plus.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
319 B
Nix
Raw Normal View History

{ 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"
];
}