about summary refs log blame commit diff
path: root/users/wpcarro/third_party/lisp/let-plus.nix
blob: a750443fd1c80e753f5fe954d8c16fbc955b9f68 (plain) (tree)
1
2
3
4
5
6
7
8
9
                          





                                                     
                                
                    

                                     
                                       






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