about summary refs log tree commit diff
path: root/third_party/lisp/iterate.nix
blob: 2e6873885f549379aebe4ea4cd764e2dd09d99ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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 = "a1c47b2b74f6c96149d717be90c07a1b273ced69";
};
in depot.nix.buildLisp.library {
  name = "iterate";
  srcs = [
    "${src}/package.lisp"
    "${src}/iterate.lisp"
  ];
}