blob: b66368a9b6e355bad752392ba1d1f235ec047ca7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.cl-change-case;
in depot.nix.buildLisp.library {
name = "cl-change-case";
deps = with depot.third_party.lisp; [ cl-ppcre cl-ppcre.unicode ];
srcs = [ (src + "/src/cl-change-case.lisp") ];
tests = {
name = "cl-change-case-tests";
srcs = [ (src + "/t/cl-change-case.lisp") ];
deps = [
depot.third_party.lisp.fiveam
];
expression = ''
(5am:run! :cl-change-case)
'';
};
}
|