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
15
third_party/lisp/puri.nix
vendored
Normal file
15
third_party/lisp/puri.nix
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Portable URI library
|
||||
{ pkgs, ... }:
|
||||
|
||||
let src = builtins.fetchGit {
|
||||
url = "http://git.kpe.io/puri.git";
|
||||
rev = "ef5afb9e5286c8e952d4344f019c1a636a717b97";
|
||||
};
|
||||
in pkgs.nix.buildLisp.library {
|
||||
name = "puri";
|
||||
srcs = [
|
||||
(src + "/src.lisp")
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue