feat(3p/lisp/cl-date-time-parser): init at 00d6fc7
Change-Id: I6a04c5bb611f011e66c1a8d7089e0b2bff3d2fdf Reviewed-on: https://cl.tvl.fyi/c/depot/+/5002 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
parent
5b579c2a32
commit
40014c70b3
1 changed files with 21 additions and 0 deletions
21
third_party/lisp/cl-date-time-parser.nix
vendored
Normal file
21
third_party/lisp/cl-date-time-parser.nix
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ depot, pkgs, ... }:
|
||||
|
||||
depot.nix.buildLisp.library {
|
||||
name = "cl-date-time-parser";
|
||||
|
||||
srcs = [
|
||||
(pkgs.fetchurl {
|
||||
url = "https://raw.githubusercontent.com/tkych/cl-date-time-parser/00d6fc70b599f460fdf13cf0cf7e6bf843312410/date-time-parser.lisp";
|
||||
sha256 = "0zrkv1q3sx5ksijxhw45ixf1hy5b9biii6i6v41h12q6pbkfqz69";
|
||||
})
|
||||
];
|
||||
|
||||
deps = [
|
||||
depot.third_party.lisp.alexandria
|
||||
depot.third_party.lisp.anaphora
|
||||
depot.third_party.lisp.split-sequence
|
||||
depot.third_party.lisp.cl-ppcre
|
||||
depot.third_party.lisp.local-time
|
||||
depot.third_party.lisp.parse-float
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue