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
17
third_party/lisp/parse-number.nix
vendored
Normal file
17
third_party/lisp/parse-number.nix
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ depot, pkgs, ... }:
|
||||
|
||||
let
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "sharplispers";
|
||||
repo = "parse-number";
|
||||
rev = "7707b224c4b941c2cbd28459113534242cee3a31";
|
||||
sha256 = "0sk06ib1bhqv9y39vwnnw44vmbc4b0kvqm37xxmkxd4dwchq82d7";
|
||||
};
|
||||
|
||||
in depot.nix.buildLisp.library {
|
||||
name = "parse-number";
|
||||
srcs = map (f: src + ("/" + f)) [
|
||||
"parse-number.lisp"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue