Skip to content

Commit 3a78dd0

Browse files
committed
pywal16: add man page
1 parent 00edd03 commit 3a78dd0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pkgs/by-name/py/pywal16/package.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
python3,
44
fetchFromGitHub,
55
imagemagick,
6+
installShellFiles,
67
}:
78

89
python3.pkgs.buildPythonApplication rec {
@@ -19,11 +20,17 @@ python3.pkgs.buildPythonApplication rec {
1920

2021
build-system = [ python3.pkgs.setuptools ];
2122

23+
nativeBuildInputs = [ installShellFiles ];
24+
2225
nativeCheckInputs = [
2326
python3.pkgs.pytestCheckHook
2427
imagemagick
2528
];
2629

30+
postInstall = ''
31+
installManPage data/man/man1/wal.1
32+
'';
33+
2734
preCheck = ''
2835
export HOME=$(mktemp -d)
2936
'';

0 commit comments

Comments
 (0)