feat(3p/lisp): Add cl-who

Change-Id: I35fcb65966be2bc63ef534ab0d575aae8beb3cdf
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1327
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
This commit is contained in:
Griffin Smith 2020-07-20 22:51:41 -04:00 committed by glittershark
parent d305e39187
commit 3b02fcb0a7
2 changed files with 22 additions and 1 deletions

View file

@ -65,7 +65,7 @@ in lib.fix (self: {
nix
openldap
rapidcheck
];
] ++ builtins.attrValues lisp;
various = with depot; [
lisp.dns

21
third_party/lisp/cl-who.nix vendored Normal file
View file

@ -0,0 +1,21 @@
{ depot, pkgs, ... }:
let
src = pkgs.fetchFromGitHub {
owner = "edicl";
repo = "cl-who";
rev = "0d3826475133271ee8c590937136c1bc41b8cbe0";
sha256 = "0sc8nji9q1df04lhsiwsjy1a35996bibl31w5hp5sh8q6sa122dy";
};
in depot.nix.buildLisp.library {
name = "cl-who";
srcs = map (f: src + ("/" + f)) [
"packages.lisp"
"specials.lisp"
"util.lisp"
"who.lisp"
];
}