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

                            
                                    

     





                                                     
                                
                    

                                     
                                       






                            
{
  depot ? import <depot> {},
  briefcase ? import <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"
  ];
}