about summary refs log tree commit diff
path: root/third_party/lisp/cl-base64.nix
blob: c4dc9ca2c71958d35c3c5f3da3ab3ac17bfc1363 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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")
  ];
}