xo-tokenizer2/pkgs/xo-callback.nix
2025-05-11 14:46:04 -05:00

28 lines
475 B
Nix

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