feat(3p/lisp): Add many packages
Add the following packages along with their transitive dependencies: - trivial-ldap - defclass-std - easy-routes Change-Id: Ib24517f18d14d57540362132c9a24ff2a5a4bd9d Reviewed-on: https://cl.tvl.fyi/c/depot/+/1336 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: kanepyork <rikingcoding@gmail.com>
This commit is contained in:
parent
ef64479c9d
commit
08397fd757
9 changed files with 210 additions and 0 deletions
22
third_party/lisp/trivial-ldap.nix
vendored
Normal file
22
third_party/lisp/trivial-ldap.nix
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ depot, pkgs, ... }:
|
||||
|
||||
let src = pkgs.fetchFromGitHub {
|
||||
owner = "rwiker";
|
||||
repo = "trivial-ldap";
|
||||
rev = "3b8f1ff85f29ea63e6ab2d0d27029d68b046faf8";
|
||||
sha256 = "1zaa4wnk5y5ff211pkg6dl27j4pjwh56hq0246slxsdxv6kvp1z9";
|
||||
};
|
||||
in depot.nix.buildLisp.library {
|
||||
name = "trivial-ldap";
|
||||
|
||||
deps = with pkgs.lisp; [
|
||||
usocket
|
||||
cl-plus-ssl
|
||||
cl-yacc
|
||||
];
|
||||
|
||||
srcs = map (f: src + ("/" + f)) [
|
||||
"package.lisp"
|
||||
"trivial-ldap.lisp"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue