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:
parent
e50c669310
commit
6de462f674
8 changed files with 188 additions and 0 deletions
17
third_party/lisp/cl-base64.nix
vendored
Normal file
17
third_party/lisp/cl-base64.nix
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Base64 encoding for Common Lisp
|
||||
{ pkgs, ... }:
|
||||
|
||||
let src = builtins.fetchGit {
|
||||
url = "http://git.kpe.io/cl-base64.git";
|
||||
rev = "fc62a5342445d4ec1dd44e95f7dc513473a8c89a";
|
||||
};
|
||||
in pkgs.nix.buildLisp.library {
|
||||
name = "cl-base64";
|
||||
srcs = [
|
||||
(src + "/package.lisp")
|
||||
(src + "/encode.lisp")
|
||||
(src + "/decode.lisp")
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue