feat(third_party/lisp): Add derivation for cl-colors2
This commit is contained in:
parent
98836812eb
commit
b90a5bbfbc
1 changed files with 21 additions and 0 deletions
21
third_party/lisp/cl-colors2.nix
vendored
Normal file
21
third_party/lisp/cl-colors2.nix
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
|
||||
{ pkgs, ... }:
|
||||
|
||||
let src = builtins.fetchGit {
|
||||
url = "https://notabug.org/cage/cl-colors2.git";
|
||||
rev = "795aedee593b095fecde574bd999b520dd03ed24";
|
||||
};
|
||||
in pkgs.nix.buildLisp.library {
|
||||
name = "cl-colors2";
|
||||
deps = with pkgs.third_party.lisp; [
|
||||
alexandria
|
||||
cl-ppcre
|
||||
];
|
||||
|
||||
srcs = map (f: src + ("/" + f)) [
|
||||
"package.lisp"
|
||||
"colors.lisp"
|
||||
"colornames.lisp"
|
||||
"hexcolors.lisp"
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue