xo-umbrella2/pkgs/xo-flatstring.nix

60 lines
960 B
Nix

{
# dependencies
lib, stdenv, cmake, catch2, doxygen,
python3Packages,
sphinx, graphviz,
xo-cmake, xo-indentlog,
buildDocs ? false,
} :
stdenv.mkDerivation (finalattrs:
{
name = "xo-flatstring";
version = "1.0";
outputs = [
"out"
]
# ++ lib.optionals buildDocs [
# "doc"
# ]
;
src = ../xo-flatstring;
# guessing may need this for doxygen etc
# env.LC_ALL = "en_US.UTF-8";
cmakeFlags = ["-DCMAKE_MODULE_PATH=${xo-cmake}/share/cmake"];
inherit buildDocs;
doCheck = true;
postBuild = lib.optionalString buildDocs ''
cmake --build . -- docs
'';
propagatedBuildInputs = [ ];
nativeBuildInputs = [
cmake
catch2
doxygen
sphinx
xo-cmake
xo-indentlog
]
++ lib.optionals buildDocs [
doxygen
sphinx
graphviz
python3Packages.sphinx-rtd-theme
python3Packages.breathe
]
;
})