tvl-depot/third_party/lisp/split-sequence.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
462 B
Nix
Raw Normal View History

# 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"
];
}