khard: add manpages to output
This commit is contained in:
parent
96fa2cb553
commit
2127f215e0
1 changed files with 8 additions and 2 deletions
|
@ -10,10 +10,15 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
python3.pkgs.setuptools-scm
|
setuptools-scm
|
||||||
|
sphinxHook
|
||||||
|
sphinx-autoapi
|
||||||
|
sphinx-autodoc-typehints
|
||||||
];
|
];
|
||||||
|
|
||||||
|
sphinxBuilders = [ "man" ];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
atomicwrites
|
atomicwrites
|
||||||
configobj
|
configobj
|
||||||
|
@ -40,5 +45,6 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
description = "Console carddav client";
|
description = "Console carddav client";
|
||||||
license = lib.licenses.gpl3;
|
license = lib.licenses.gpl3;
|
||||||
maintainers = with lib.maintainers; [ matthiasbeyer ];
|
maintainers = with lib.maintainers; [ matthiasbeyer ];
|
||||||
|
mainProgram = "khard";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue