Files
clan-core/docs/default.nix
2024-04-12 17:13:11 +02:00

27 lines
408 B
Nix

{ pkgs, ... }:
pkgs.stdenv.mkDerivation {
name = "clan-documentation";
src = ./.;
nativeBuildInputs =
[ pkgs.python3 ]
++ (with pkgs.python3Packages; [
mkdocs
mkdocs-material
mkdocs-drawio-exporter
mkdocs-swagger-ui-tag
plantuml-markdown
]);
buildPhase = ''
mkdocs build --strict
ls -la .
'';
installPhase = ''
cp -a site/ $out/
'';
}