about summary refs log tree commit diff
path: root/third_party/lisp/cl-colors2.nix
blob: c90b8eae0118447fb2269626a4bf596e076fe29e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

{ depot, ... }:

let src = builtins.fetchGit {
  url = "https://notabug.org/cage/cl-colors2.git";
  rev = "795aedee593b095fecde574bd999b520dd03ed24";
};
in depot.nix.buildLisp.library {
  name = "cl-colors2";
  deps = with depot.third_party.lisp; [
    alexandria
    cl-ppcre
  ];

  srcs = map (f: src + ("/" + f)) [
    "package.lisp"
    "colors.lisp"
    "colornames.lisp"
    "hexcolors.lisp"
  ];
}