mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
ytcc: install manpage
This commit is contained in:
parent
b58eda9b91
commit
1839c17eb5
@ -1,4 +1,4 @@
|
||||
{ lib, python3Packages, fetchFromGitHub, gettext }:
|
||||
{ lib, python3Packages, fetchFromGitHub, gettext, installShellFiles }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "ytcc";
|
||||
@ -11,7 +11,7 @@ python3Packages.buildPythonApplication rec {
|
||||
sha256 = "0xpinilb8rnha35laxq076p6v7hdis6davr9ckm5xycs3m4aj7s8";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gettext ];
|
||||
nativeBuildInputs = [ gettext installShellFiles ];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
click
|
||||
@ -38,6 +38,10 @@ python3Packages.buildPythonApplication rec {
|
||||
"test_download"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
installManPage doc/ytcc.1
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Command Line tool to keep track of your favourite YouTube channels without signing up for a Google account";
|
||||
homepage = "https://github.com/woefe/ytcc";
|
||||
|
Loading…
Reference in New Issue
Block a user