Merge pull request #171033 from Luflosi/sasutils-add-man-pages
sasutils: add man pages
This commit is contained in:
commit
624320b1a5
1 changed files with 7 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, python3Packages, fetchFromGitHub, sg3_utils }:
|
||||
{ lib, python3Packages, fetchFromGitHub, installShellFiles, sg3_utils }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "sasutils";
|
||||
|
@ -11,8 +11,14 @@ python3Packages.buildPythonApplication rec {
|
|||
sha256 = "0kh5pcc2shdmrvqqi2y1zamzsfvk56pqgwqgqhjfz4r6yfpm04wl";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
propagatedBuildInputs = [ sg3_utils ];
|
||||
|
||||
postInstall = ''
|
||||
installManPage doc/man/man1/*.1
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/stanford-rc/sasutils";
|
||||
description = "A set of command-line tools to ease the administration of Serial Attached SCSI (SAS) fabrics";
|
||||
|
|
Loading…
Reference in a new issue