nix build: dep fixes in xo-object xo-ordinaltree [PKG]
All checks were successful
CI / smoke-test (push) Successful in 1m26s

This commit is contained in:
Roland Conybeare 2026-05-31 18:15:48 -04:00
commit 6f8a90a9fc
2 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
{
# nixpkgs dependencies
lib, stdenv, cmake, catch2,
lib, stdenv, cmake, catch2, libbsd,
# xo dependencies
# xo-reflect,
@ -30,7 +30,7 @@ stdenv.mkDerivation (finalattrs:
inherit doCheck;
nativeBuildInputs = [
cmake catch2
cmake catch2 libbsd
xo-randomgen
xo-cmake
];

View file

@ -3,11 +3,10 @@
stdenv, cmake, catch2,
# xo dependencies
xo-cmake,
xo-allocutil,
xo-refcnt,
xo-randomgen,
# xo-reflect,
#, xo-indentlog,
xo-cmake,
} :
stdenv.mkDerivation (finalattrs:
@ -23,6 +22,7 @@ stdenv.mkDerivation (finalattrs:
cmake catch2 xo-cmake
];
propagatedBuildInputs = [
xo-allocutil
xo-refcnt
xo-randomgen
];