summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorGabriel Arazas <foodogsquared@foodogsquared.one>2023-01-12 11:44:42 +0800
committerGabriel Arazas <foodogsquared@foodogsquared.one>2023-02-04 20:04:25 +0800
commitbf22adffaba1f2b4952c2c39ddefecf50214e4c0 (patch)
tree9a3a8a5ede241bd4587ae13df279b7ee21770779 /pkgs/tools
parentc9c4aea7ab0d137c62e09300d874be8a9a6820fc (diff)
fail2ban: add manpages to output
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/fail2ban/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix
index 459f9f12c1ea..daa0e8471158 100644
--- a/pkgs/tools/security/fail2ban/default.nix
+++ b/pkgs/tools/security/fail2ban/default.nix
@@ -1,6 +1,7 @@
{ lib, stdenv, fetchFromGitHub
, python3
, fetchpatch
+, installShellFiles
}:
python3.pkgs.buildPythonApplication rec {
@@ -14,6 +15,10 @@ python3.pkgs.buildPythonApplication rec {
sha256 = "q4U9iWCa1zg8sA+6pPNejt6v/41WGIKN5wITJCrCqQE=";
};
+ outputs = [ "out" "man" ];
+
+ nativeBuildInputs = [ installShellFiles ];
+
pythonPath = with python3.pkgs;
lib.optionals stdenv.isLinux [
systemd
@@ -71,6 +76,8 @@ python3.pkgs.buildPythonApplication rec {
''
# see https://github.com/NixOS/nixpkgs/issues/4968
rm -r "${sitePackages}/etc"
+
+ installManPage man/*.[1-9]
'' + lib.optionalString stdenv.isLinux ''
# see https://github.com/NixOS/nixpkgs/issues/4968
rm -r "${sitePackages}/usr"