From a65bb6573bb1dd16b7cdd9a588668eec87dc21a3 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sat, 30 May 2026 13:05:33 -0400 Subject: [PATCH 1/2] nix build: syntax [BUGFIX] --- xo.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/xo.nix b/xo.nix index 8ce8db92..c2e832b7 100644 --- a/xo.nix +++ b/xo.nix @@ -55,7 +55,6 @@ let xo-callback = callPackage pkgs/xo-callback.nix { stdenv = jitStdenv; }; xo-object = callPackage pkgs/xo-object.nix { stdenv = jitStdenv; }; xo-ordinaltree = callPackage pkgs/xo-ordinaltree.nix { stdenv = jitStdenv; }; - = true; }; xo-webutil = callPackage pkgs/xo-webutil.nix { stdenv = jitStdenv; }; xo-pywebutil = callPackage pkgs/xo-pywebutil.nix {}; xo-printjson = callPackage pkgs/xo-printjson.nix {}; From 142768e8d5b5cf4983b9675a1828b782f7330ca9 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sat, 30 May 2026 13:13:29 -0400 Subject: [PATCH 2/2] nix build: fix xo-tokenizer2 deps [CI] --- pkgs/xo-tokenizer2.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/xo-tokenizer2.nix b/pkgs/xo-tokenizer2.nix index 24266e72..6933fa47 100644 --- a/pkgs/xo-tokenizer2.nix +++ b/pkgs/xo-tokenizer2.nix @@ -2,6 +2,7 @@ # nixpkgs dependencies lib, stdenv, cmake, catch2, replxx, + xo-stringtable2, xo-arena, xo-indentlog, xo-cmake, @@ -28,6 +29,7 @@ stdenv.mkDerivation (finalattrs: xo-cmake ]; propagatedBuildInputs = [ + xo-stringtable2 xo-arena xo-indentlog ];