tvl-depot/third_party/lisp/cl-base64.nix
2020-02-21 13:54:53 +00:00

17 lines
336 B
Nix

# Base64 encoding for Common Lisp
{ depot, ... }:
let src = builtins.fetchGit {
url = "http://git.kpe.io/cl-base64.git";
rev = "fc62a5342445d4ec1dd44e95f7dc513473a8c89a";
};
in depot.nix.buildLisp.library {
name = "cl-base64";
srcs = [
(src + "/package.lisp")
(src + "/encode.lisp")
(src + "/decode.lisp")
];
}