about summary refs log tree commit diff
path: root/third_party/lisp/iterate.nix
blob: b9309c36b4ba269c6684d06cd246c99dfc8af901 (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.
{ pkgs, ... }:

let src = builtins.fetchGit {
  url = "https://gitlab.common-lisp.net/iterate/iterate.git";
  rev = "a1c47b2b74f6c96149d717be90c07a1b273ced69";
};
in pkgs.nix.buildLisp.library {
  name = "iterate";
  srcs = [
    "${src}/package.lisp"
    "${src}/iterate.lisp"
  ];
}