blob: 1358408d387c260b11e0a81f096c68f588f80a4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Library for manipulating dates & times
{ depot, pkgs, ... }:
let
inherit (depot.nix) buildLisp;
src = with pkgs; srcOnly lispPackages.local-time;
in
buildLisp.library {
name = "local-time";
deps = [
depot.third_party.lisp.cl-fad
{
scbl = buildLisp.bundled "uiop";
default = buildLisp.bundled "asdf";
}
];
srcs = [
"${src}/src/package.lisp"
"${src}/src/local-time.lisp"
];
}
|