2020-01-21 03:06:11 +01:00
|
|
|
# Base64 encoding for Common Lisp
|
2021-12-14 22:32:27 +01:00
|
|
|
{ depot, pkgs, ... }:
|
2020-01-21 03:06:11 +01:00
|
|
|
|
2021-12-14 22:32:27 +01:00
|
|
|
let src = with pkgs; srcOnly lispPackages.cl-base64;
|
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")
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
|