diff options
Diffstat (limited to 'third_party/lisp/marshal.nix')
-rw-r--r-- | third_party/lisp/marshal.nix | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/third_party/lisp/marshal.nix b/third_party/lisp/marshal.nix index 711e6e082d61..73a1664a0162 100644 --- a/third_party/lisp/marshal.nix +++ b/third_party/lisp/marshal.nix @@ -1,13 +1,6 @@ { depot, pkgs, ... }: -let - src = pkgs.fetchFromGitHub { - owner = "wlbr"; - repo = "cl-marshal"; - rev = "eff1b15f2b0af2f26f71ad6a4dd5c4beab9299ec"; - sha256 = "08qs6fhk38xpkkjkpcj92mxx0lgy4ygrbbzrmnivdx281syr0gwh"; - }; - +let src = with pkgs; srcOnly lispPackages.marshal; in depot.nix.buildLisp.library { name = "marshal"; srcs = map (f: src + ("/" + f)) [ |