diff options
Diffstat (limited to 'third_party/lisp/local-time.nix')
-rw-r--r-- | third_party/lisp/local-time.nix | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/third_party/lisp/local-time.nix b/third_party/lisp/local-time.nix index 65fb9c37fbf2..8e96c5e51714 100644 --- a/third_party/lisp/local-time.nix +++ b/third_party/lisp/local-time.nix @@ -1,15 +1,18 @@ # Library for manipulating dates & times { depot, pkgs, ... }: -let src = pkgs.fetchFromGitHub { - owner = "dlowe-net"; - repo = "local-time"; - rev = "dc54f61415c76ee755a6f69d4154a3a282f2789f"; - sha256 = "1l9v07ghx7g9p2gp003fki4j8bsa1w2gbm40qc41i94mdzikc0ry"; -}; -in depot.nix.buildLisp.library { +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 ]; + deps = [ + depot.third_party.lisp.cl-fad + { + scbl = buildLisp.bundled "uiop"; + default = buildLisp.bundled "asdf"; + } + ]; srcs = [ "${src}/src/package.lisp" |