nix build: promote xo-pyutil [RITUAL]

pyxxx immediately after xxx, precede {reflect, pyreflect}
This commit is contained in:
Roland Conybeare 2026-05-30 11:33:56 -04:00
commit 56baed88f8
2 changed files with 2 additions and 2 deletions

View file

@ -327,12 +327,12 @@ in
testutil = pkgs.xo-testutil;
alloc2 = pkgs.xo-alloc2;
refcnt = pkgs.xo-refcnt;
pyutil = pkgs.xo-pyutil;
reflect = pkgs.xo-reflect;
stringtable2 = pkgs.xo-stringtable2;
object2 = pkgs.xo-object2;
gc = pkgs.xo-gc;
allocutil = pkgs.xo-allocutil;
pyutil = pkgs.xo-pyutil;
pyreflect = pkgs.xo-pyreflect;
ratio = pkgs.xo-ratio;
unit = pkgs.xo-unit;

2
xo.nix
View file

@ -37,12 +37,12 @@ let
xo-testutil = callPackage pkgs/xo-testutil.nix { stdenv = jitStdenv; };
xo-alloc2 = callPackage pkgs/xo-alloc2.nix { stdenv = jitStdenv; buildDocs = true; };
xo-refcnt = callPackage pkgs/xo-refcnt.nix { stdenv = jitStdenv; };
xo-pyutil = callPackage pkgs/xo-pyutil.nix { stdenv = jitStdenv; };
xo-reflect = callPackage pkgs/xo-reflect.nix { stdenv = jitStdenv; };
xo-stringtable2 = callPackage pkgs/xo-stringtable2.nix { stdenv = jitStdenv; };
xo-object2 = callPackage pkgs/xo-object2.nix { stdenv = jitStdenv; };
xo-gc = callPackage pkgs/xo-gc.nix { stdenv = jitStdenv; buildDocs = true; };
xo-allocutil = callPackage pkgs/xo-allocutil.nix { stdenv = jitStdenv; };
xo-pyutil = callPackage pkgs/xo-pyutil.nix { stdenv = jitStdenv; };
xo-pyreflect = callPackage pkgs/xo-pyreflect.nix { stdenv = jitStdenv; };
xo-ratio = callPackage pkgs/xo-ratio.nix { stdenv = jitStdenv; buildDocs = true; buildExamples = true; };
xo-unit = callPackage pkgs/xo-unit.nix { stdenv = jitStdenv; buildDocs = true; buildExamples = true; };