diff options
Diffstat (limited to 'third_party/lisp/babel.nix')
-rw-r--r-- | third_party/lisp/babel.nix | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/third_party/lisp/babel.nix b/third_party/lisp/babel.nix index c4a49e833f76..ae7c5dd23d18 100644 --- a/third_party/lisp/babel.nix +++ b/third_party/lisp/babel.nix @@ -1,10 +1,7 @@ # Babel is an encoding conversion library for Common Lisp. -{ depot, ... }: +{ depot, pkgs, ... }: -let src = builtins.fetchGit { - url = "https://github.com/cl-babel/babel.git"; - rev = "f892d0587c7f3a1e6c0899425921b48008c29ee3"; # 2020-07-19 -}; +let src = with pkgs; srcOnly lispPackages.babel; in depot.nix.buildLisp.library { name = "babel"; deps = [ |