From 6de462f674affc4407b89ffe356c2159efad353c Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 21 Jan 2020 02:06:11 +0000 Subject: 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. --- third_party/lisp/cl-base64.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 third_party/lisp/cl-base64.nix (limited to 'third_party/lisp/cl-base64.nix') diff --git a/third_party/lisp/cl-base64.nix b/third_party/lisp/cl-base64.nix new file mode 100644 index 000000000000..c4dc9ca2c719 --- /dev/null +++ b/third_party/lisp/cl-base64.nix @@ -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") + ]; +} + + -- cgit 1.4.1