agtest/docs/default.nix

16 lines
299 B
Nix
Raw Normal View History

2021-10-04 15:40:28 +00:00
{ stdenvNoCC, nix-gitignore, sphinx, furo }:
stdenvNoCC.mkDerivation {
name = "agtest-docs";
src = nix-gitignore.gitignoreSource [ ../.gitignore ] ./..;
buildInputs = [ sphinx furo ];
buildPhase = ''
make -C docs html
'';
installPhase = ''
cp -r docs/_build/html $out
'';
}