feat(third_party/lisp): Check in drakma HTTP client & deps

This HTTP client has much fewer dependencies than some of the other
ones I've seen, and it'll be good enough for my demo purposes.
This commit is contained in:
Vincent Ambo 2020-01-21 02:06:11 +00:00
parent e50c669310
commit 6de462f674
8 changed files with 188 additions and 0 deletions

18
third_party/lisp/split-sequence.nix vendored Normal file
View file

@ -0,0 +1,18 @@
# split-sequence is a library for, well, splitting sequences apparently.
{ pkgs, ... }:
let src = builtins.fetchGit {
url = "https://github.com/sharplispers/split-sequence.git";
rev = "41c0fc79a5a2871d16e5727969a8f699ef44d791";
};
in pkgs.nix.buildLisp.library {
name = "split-sequence";
srcs = map (f: src + ("/" + f)) [
"package.lisp"
"vector.lisp"
"list.lisp"
"extended-sequence.lisp"
"api.lisp"
"documentation.lisp"
];
}