about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsterni <sternenseemann@systemli.org>2022-05-31T14·41+0200
committerclbot <clbot@tvl.fyi>2022-05-31T14·46+0000
commita7f9624fb39989ae2180901ffd89a37824adc1a1 (patch)
tree184a59098a2f4c81f7ed0b00c65fedcfec77814c
parenta3e6e8dc24176db622e285abe313be68fae63f46 (diff)
chore(3p/lisp/cl-json): use quicklisp source r/4193
This switches upstream from hankhero/cl-json to
sharplispers/cl-json (the former of which had its last commit in 2014).
Sadly the new upstream hasn't decided on an appropriate fix for b/145
yet (due to concern about backwards compatibility, apparently). I did
not look before working on a fix, so I have an 90% finished fix which
is (I think) better than the already proposed ones, so I'll patch it in
here eventually.

Change-Id: I9e39e138fa655794b864db5f268bdfdc35788fcc
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5795
Autosubmit: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
-rw-r--r--third_party/lisp/cl-json.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/third_party/lisp/cl-json.nix b/third_party/lisp/cl-json.nix
index 0230f274af..d56f9b9e1b 100644
--- a/third_party/lisp/cl-json.nix
+++ b/third_party/lisp/cl-json.nix
@@ -4,12 +4,7 @@
 let
   inherit (depot.nix) buildLisp;
 
-  src = pkgs.fetchFromGitHub {
-    owner = "hankhero";
-    repo = "cl-json";
-    rev = "6dfebb9540bfc3cc33582d0c03c9ec27cb913e79";
-    sha256 = "0fx3m3x3s5ji950yzpazz4s0img3l6b3d6l3jrfjv0lr702496lh";
-  };
+  src = pkgs.srcOnly pkgs.quicklispPackages.cl-json;
 in
 buildLisp.library {
   name = "cl-json";