bugfix: missed pkgs/xo-ordinaltree.nix

This commit is contained in:
Roland Conybeare 2025-05-10 19:40:36 -05:00
commit 76d8a73bbb

28
pkgs/xo-ordinaltree.nix Normal file
View file

@ -0,0 +1,28 @@
{
# nixpkgs dependencies
stdenv, cmake, catch2,
# xo dependencies
xo-cmake,
xo-refcnt,
xo-randomgen,
# xo-reflect,
#, xo-indentlog,
} :
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-refcnt
xo-randomgen
];
})