xo-umbrella2/pkgs/xo-ordinaltree.nix
Roland Conybeare 6f8a90a9fc
All checks were successful
CI / smoke-test (push) Successful in 1m26s
nix build: dep fixes in xo-object xo-ordinaltree [PKG]
2026-05-31 18:15:48 -04:00

29 lines
476 B
Nix

{
# nixpkgs dependencies
stdenv, cmake, catch2,
# xo dependencies
xo-allocutil,
xo-refcnt,
xo-randomgen,
xo-cmake,
} :
stdenv.mkDerivation (finalattrs:
{
name = "xo-ordinaltree";
src = ../xo-ordinaltree;
cmakeFlags = ["-DCMAKE_MODULE_PATH=${xo-cmake}/share/cmake"];
doCheck = true;
nativeBuildInputs = [
cmake catch2 xo-cmake
];
propagatedBuildInputs = [
xo-allocutil
xo-refcnt
xo-randomgen
];
})