2020-01-21 03:06:11 +01:00
|
|
|
# split-sequence is a library for, well, splitting sequences apparently.
|
2020-02-21 13:47:29 +01:00
|
|
|
{ depot, ... }:
|
2020-01-21 03:06:11 +01:00
|
|
|
|
|
|
|
let src = builtins.fetchGit {
|
|
|
|
url = "https://github.com/sharplispers/split-sequence.git";
|
|
|
|
rev = "41c0fc79a5a2871d16e5727969a8f699ef44d791";
|
|
|
|
};
|
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"
|
|
|
|
];
|
|
|
|
}
|