about summary refs log tree commit diff
path: root/third_party/lisp/split-sequence.nix
blob: 105646386fd3c2ee7e5b95d5cab51a0468007aa2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# split-sequence is a library for, well, splitting sequences apparently.
{ depot, ... }:

let src = builtins.fetchGit {
  url = "https://github.com/sharplispers/split-sequence.git";
  rev = "41c0fc79a5a2871d16e5727969a8f699ef44d791";
};
in depot.nix.buildLisp.library {
  name = "split-sequence";
  srcs = map (f: src + ("/" + f)) [
    "package.lisp"
    "vector.lisp"
    "list.lisp"
    "extended-sequence.lisp"
    "api.lisp"
    "documentation.lisp"
  ];
}