From 6fdc1bb3377d24b63c277ad79d4e597b9936fe92 Mon Sep 17 00:00:00 2001 From: takeokunn Date: Mon, 17 Aug 2026 21:46:45 +0900 Subject: [PATCH] chore(nix): finish the -kit rename in the camelCase locals The package rename landed everywhere the literal string `cl-prolog` / `cl-dataflow` appeared, but flake.nix names its let-bindings in camelCase -- clPrologWeaveSystem, clDataflowSource, clDataflowPackage -- and those spellings contain no hyphen, so neither the substitution nor the residual grep that checked it ever saw them. The verification was written from the same pattern list as the edit, so it confirmed exactly the cases that had been considered and stayed silent on this one. Purely a binding-name change: every value these names hold already pointed at the renamed input and the renamed .asd, and CI was green before this commit. Nothing functional changes. --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 630da9a..e375feb 100644 --- a/flake.nix +++ b/flake.nix @@ -262,7 +262,7 @@ # nothing to pass) and `cl-weave` (which is not, so it is passed). The # ASDF system name carries a slash; `pname` cannot, since it becomes a # store path component. - clPrologWeaveSystem = + clPrologKitWeaveSystem = ctx: lisp: siblingSystem ctx { pname = "cl-prolog-kit-weave"; @@ -364,7 +364,7 @@ # and ECL alike, which is what makes the ECL check below possible. coreTestSystems = ctx: lisp: [ (clWeaveSystem ctx lisp) - (clPrologWeaveSystem ctx lisp) + (clPrologKitWeaveSystem ctx lisp) (clJsonKitSystem ctx lisp) ];