pywal16: add man page

This commit is contained in:
Moraxyc 2024-11-28 14:07:04 +08:00
parent 00edd0346e
commit 3a78dd097d
No known key found for this signature in database

View File

@ -3,6 +3,7 @@
python3,
fetchFromGitHub,
imagemagick,
installShellFiles,
}:
python3.pkgs.buildPythonApplication rec {
@ -19,11 +20,17 @@ python3.pkgs.buildPythonApplication rec {
build-system = [ python3.pkgs.setuptools ];
nativeBuildInputs = [ installShellFiles ];
nativeCheckInputs = [
python3.pkgs.pytestCheckHook
imagemagick
];
postInstall = ''
installManPage data/man/man1/wal.1
'';
preCheck = ''
export HOME=$(mktemp -d)
'';