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

let src = with pkgs; srcOnly lispPackages.split-sequence;
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"
  ];
}