about summary refs log tree commit diff
path: root/third_party/lisp/cl-base64.nix
blob: 08055a047119c37b2b0292cb2b0b323c545dad7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Base64 encoding for Common Lisp
{ depot, pkgs, ... }:

let src = with pkgs; srcOnly lispPackages.cl-base64;
in depot.nix.buildLisp.library {
  name = "cl-base64";
  srcs = [
    (src + "/package.lisp")
    (src + "/encode.lisp")
    (src + "/decode.lisp")
  ];
}