about summary refs log tree commit diff
path: root/third_party/lisp/cl-colors.nix
blob: b51e4d46a7474682c1c09853d09bc89ccecf940b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ depot, pkgs, ... }:

let src = with pkgs; srcOnly lispPackages.cl-colors;
in depot.nix.buildLisp.library {
  name = "cl-colors";
  deps = [
    depot.third_party.lisp.alexandria
    depot.third_party.lisp.let-plus
  ];
  srcs = [
    "${src}/package.lisp"
    "${src}/colors.lisp"
    "${src}/colornames.lisp"
    "${src}/hexcolors.lisp"
  ];
}