about summary refs log blame commit diff
path: root/third_party/lisp/iterate.nix
blob: 5875be8d5c8815e15d67522ce0c853f2e4315b95 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                   
               


                                                             
                                                                       
  
                                





                         
# iterate is an iteration construct for Common Lisp, similar to the
# LOOP macro.
{ depot, ... }:

let src = builtins.fetchGit {
  url = "https://gitlab.common-lisp.net/iterate/iterate.git";
  rev = "c24f6715bb3b962499bb4643636baaac2df4a957"; # 2021-05-23, 1.5.3
};
in depot.nix.buildLisp.library {
  name = "iterate";
  srcs = [
    "${src}/package.lisp"
    "${src}/iterate.lisp"
  ];
}