2020-01-22 01:50:05 +01:00
|
|
|
# Library for manipulating dates & times
|
2021-04-10 02:13:18 +02:00
|
|
|
{ depot, pkgs, ... }:
|
2020-01-22 01:50:05 +01:00
|
|
|
|
2021-12-14 22:32:27 +01:00
|
|
|
let
|
|
|
|
inherit (depot.nix) buildLisp;
|
|
|
|
src = with pkgs; srcOnly lispPackages.local-time;
|
|
|
|
in buildLisp.library {
|
2020-01-22 01:50:05 +01:00
|
|
|
name = "local-time";
|
2021-12-14 22:32:27 +01:00
|
|
|
deps = [
|
|
|
|
depot.third_party.lisp.cl-fad
|
|
|
|
{
|
|
|
|
scbl = buildLisp.bundled "uiop";
|
|
|
|
default = buildLisp.bundled "asdf";
|
|
|
|
}
|
|
|
|
];
|
2020-01-22 01:50:05 +01:00
|
|
|
|
|
|
|
srcs = [
|
|
|
|
"${src}/src/package.lisp"
|
|
|
|
"${src}/src/local-time.lisp"
|
|
|
|
];
|
|
|
|
}
|