diff options
Diffstat (limited to 'third_party/lisp/cl-fad.nix')
-rw-r--r-- | third_party/lisp/cl-fad.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/third_party/lisp/cl-fad.nix b/third_party/lisp/cl-fad.nix index 194ecd39566c..8131bf31be2d 100644 --- a/third_party/lisp/cl-fad.nix +++ b/third_party/lisp/cl-fad.nix @@ -1,9 +1,9 @@ # Portable pathname library -{ pkgs, ...}: +{ depot, ...}: -with pkgs.nix; +with depot.nix; -let src = pkgs.third_party.fetchFromGitHub { +let src = depot.third_party.fetchFromGitHub { owner = "edicl"; repo = "cl-fad"; rev = "c13d81c4bd9ba3a172631fd05dd213ab90e7d4cb"; @@ -12,7 +12,7 @@ let src = pkgs.third_party.fetchFromGitHub { in buildLisp.library { name = "cl-fad"; - deps = with pkgs.third_party.lisp; [ + deps = with depot.third_party.lisp; [ alexandria bordeaux-threads (buildLisp.bundled "sb-posix") |