xo-alloc/pkgs/xo-webutil.nix
2025-05-11 14:51:22 -05:00

30 lines
504 B
Nix

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