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

                                                                   
                     
 
                                                  
                                





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

let src = with pkgs; srcOnly lispPackages.iterate;
in depot.nix.buildLisp.library {
  name = "iterate";
  srcs = [
    "${src}/package.lisp"
    "${src}/iterate.lisp"
  ];
}