tvl-depot/third_party/lisp/let-plus.nix
William Carroll 9e0fdd3973 Remove default values for Nix expression parameters
I'm not sure if this commit breaks everything in my monorepo. I think it
will.

Why am I doing this? Perhaps it's a bad idea. I don't fully understand how
readTree works. My ignorance is costing me hours of time spent debugging. In an
effort to better understand readTree, I'm removing the default values for my Nix
expression parameters, which I believe have preventing errors from surfacing.
2020-03-01 22:32:24 +00:00

19 lines
418 B
Nix

{ depot, briefcase, ... }:
let
src = builtins.fetchGit {
url = "https://github.com/tpapp/let-plus.git";
rev = "7cf18b29ed0fe9c667a9a6a101b08ab9661a59e9";
};
in depot.nix.buildLisp.library {
name = "let-plus";
deps = [
depot.third_party.lisp.alexandria
briefcase.third_party.lisp.anaphora
];
srcs = [
"${src}/package.lisp"
"${src}/let-plus.lisp"
"${src}/extensions.lisp"
];
}