diff options
Diffstat (limited to 'third_party/lisp/cl-ppcre.nix')
-rw-r--r-- | third_party/lisp/cl-ppcre.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/lisp/cl-ppcre.nix b/third_party/lisp/cl-ppcre.nix index 78480fe34f5c..1dc9eb553118 100644 --- a/third_party/lisp/cl-ppcre.nix +++ b/third_party/lisp/cl-ppcre.nix @@ -1,11 +1,11 @@ # cl-ppcre is a Common Lisp regular expression library. -{ pkgs, ... }: +{ depot, ... }: let src = builtins.fetchGit { url = "https://github.com/edicl/cl-ppcre"; rev = "1ca0cd9ca0d161acd49c463d6cb5fff897596e2f"; }; -in pkgs.nix.buildLisp.library { +in depot.nix.buildLisp.library { name = "cl-ppcre"; srcs = map (f: src + ("/" + f)) [ |