diff options
author | Vincent Ambo <tazjin@google.com> | 2020-01-21T02·06+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-01-21T02·07+0000 |
commit | 6de462f674affc4407b89ffe356c2159efad353c (patch) | |
tree | febc9f4d76a3ff5c9d9e74a90fb3504836609f39 /third_party/lisp/split-sequence.nix | |
parent | e50c669310811d45f1d89b50c359e9b1adbce21d (diff) |
feat(third_party/lisp): Check in drakma HTTP client & deps r/436
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.
Diffstat (limited to 'third_party/lisp/split-sequence.nix')
-rw-r--r-- | third_party/lisp/split-sequence.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/third_party/lisp/split-sequence.nix b/third_party/lisp/split-sequence.nix new file mode 100644 index 000000000000..bccd0d6fccf6 --- /dev/null +++ b/third_party/lisp/split-sequence.nix @@ -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" + ]; +} |