blob: 6c3fe8d33154243cae78f1bdf24cefbb1383f79e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# TODO(sterni): package (switch to?) cl-colors-ng
{ depot, pkgs, ... }:
let src = with pkgs; srcOnly sbcl.pkgs.cl-colors2;
in depot.nix.buildLisp.library {
name = "cl-colors2";
deps = with depot.third_party.lisp; [
alexandria
cl-ppcre
parse-number
{
sbcl = depot.nix.buildLisp.bundled "uiop";
default = depot.nix.buildLisp.bundled "asdf";
}
];
srcs = map (f: src + ("/" + f)) [
"package.lisp"
"colors.lisp"
"colornames-x11.lisp"
"colornames-svg.lisp"
"colornames-gdk.lisp"
"hexcolors.lisp"
"print.lisp"
];
}
|