2020-01-21 03:06:11 +01:00
|
|
|
# Base64 encoding for Common Lisp
|
2020-02-21 13:47:29 +01:00
|
|
|
{ depot, ... }:
|
2020-01-21 03:06:11 +01:00
|
|
|
|
|
|
|
let src = builtins.fetchGit {
|
|
|
|
url = "http://git.kpe.io/cl-base64.git";
|
|
|
|
rev = "fc62a5342445d4ec1dd44e95f7dc513473a8c89a";
|
|
|
|
};
|
2020-02-21 13:47:29 +01:00
|
|
|
in depot.nix.buildLisp.library {
|
2020-01-21 03:06:11 +01:00
|
|
|
name = "cl-base64";
|
|
|
|
srcs = [
|
|
|
|
(src + "/package.lisp")
|
|
|
|
(src + "/encode.lisp")
|
|
|
|
(src + "/decode.lisp")
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
|