feat: abandon the use of the git information in the repo itself

This commit is contained in:
silver 2025-01-02 17:09:40 +00:00
parent 6ba9f59e78
commit 9ae1201b1b
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D
8 changed files with 5 additions and 26 deletions

View file

@ -19,8 +19,6 @@
packages = with pkgs.python3Packages; [
mkdocs
mkdocs-material
mkdocs-git-authors-plugin
mkdocs-git-revision-date-localized-plugin
];
in {
formatter = alejandra.defaultPackage.${system};
@ -28,7 +26,7 @@
name = "skynet-wiki";
src = self;
buildInputs = packages;
buildPhase = "tar -zxf _git.tar.gz && mkdocs build";
buildPhase = "mkdocs build";
installPhase = "mkdir -p $out; cp -R site/* $out;";
};