mirror of
https://github.com/nix-community/home-manager
synced 2024-11-08 12:19:43 +01:00
69a96783b1
The `optionsDocBook` function is deprecated in nixpkgs since nixos-23.11. This commit updates the manual and manpages to use commonmark formatted documentation instead of the deprecated docbook format.
27 lines
716 B
Nix
27 lines
716 B
Nix
{ buildPythonApplication, lib, python, nixos-render-docs }:
|
|
buildPythonApplication {
|
|
pname = "home-manager-render-docs";
|
|
version = "0.0";
|
|
format = "pyproject";
|
|
|
|
src = lib.cleanSourceWith {
|
|
filter = name: type:
|
|
lib.cleanSourceFilter name type && !(type == "directory"
|
|
&& builtins.elem (baseNameOf name) [
|
|
".pytest_cache"
|
|
".mypy_cache"
|
|
"__pycache__"
|
|
]);
|
|
src = ./home-manager-render-docs;
|
|
};
|
|
|
|
nativeBuildInputs = with python.pkgs; [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ nixos-render-docs ];
|
|
|
|
meta = with lib; {
|
|
description = "Renderer for home-manager manual and option docs";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|