diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-05-23 17:06:44 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-05-23 17:06:44 +0200 |
commit | eedd47efb3255f55216125cd3cd2ebdad3b8c1b6 (patch) | |
tree | 3f1d908f3b7436e13ff9b32aa29bc9b55b89bad6 /docs/.nix/derivation.nix | |
parent | 35ef20128e1c018210f96ae1bd16e88721b0fbcf (diff) |
Removing unneeded files and fixing some build files
Diffstat (limited to 'docs/.nix/derivation.nix')
-rw-r--r-- | docs/.nix/derivation.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/.nix/derivation.nix b/docs/.nix/derivation.nix index 9780f52..929113d 100644 --- a/docs/.nix/derivation.nix +++ b/docs/.nix/derivation.nix @@ -25,13 +25,14 @@ stdenvNoCC.mkDerivation { # C++ API generation doxygen docs/Doxygen.in python3 ${gasp.outPath}/bin/gasp.py xml --namespace duke > cpp_map.json - # C++ and C template generation + # C++ and C template generation + mkdir -p source/cpp_api python3 ${gasp.outPath}/bin/make_rst.py --title="C++" -t ${gasp.outPath}/templates/rst -m cpp_map.json -o source/cpp_api - make html + make html ''; installPhase = '' mkdir -p $out - mv build/html $out/html + mv docs/html $out/html ''; } |