2020-01-21 03:06:11 +01:00
|
|
|
# split-sequence is a library for, well, splitting sequences apparently.
|
2021-12-14 22:32:27 +01:00
|
|
|
{ depot, pkgs, ... }:
|
2020-01-21 03:06:11 +01:00
|
|
|
|
2021-12-14 22:32:27 +01:00
|
|
|
let src = with pkgs; srcOnly lispPackages.split-sequence;
|
2020-02-21 13:47:29 +01:00
|
|
|
in depot.nix.buildLisp.library {
|
2020-01-21 03:06:11 +01:00
|
|
|
name = "split-sequence";
|
|
|
|
srcs = map (f: src + ("/" + f)) [
|
|
|
|
"package.lisp"
|
|
|
|
"vector.lisp"
|
|
|
|
"list.lisp"
|
|
|
|
"extended-sequence.lisp"
|
|
|
|
"api.lisp"
|
|
|
|
"documentation.lisp"
|
|
|
|
];
|
|
|
|
}
|