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

24 lines
327 B
Nix

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