tvl-depot/third_party/lisp/cl-colors2.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
360 B
Nix
Raw Normal View History

{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.cl-colors2;
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-x11.lisp"
"colornames-svg.lisp"
"hexcolors.lisp"
];
}