e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
100 lines
3.0 KiB
Nix
100 lines
3.0 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, python3
|
|
, installShellFiles
|
|
, nixosTests
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "fail2ban";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fail2ban";
|
|
repo = "fail2ban";
|
|
rev = version;
|
|
hash = "sha256-0xPNhbu6/p/cbHOr5Y+PXbMbt5q/S13S5100ZZSdylE=";
|
|
};
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
pythonPath = with python3.pkgs;
|
|
lib.optionals stdenv.hostPlatform.isLinux [
|
|
systemd
|
|
pyinotify
|
|
|
|
# https://github.com/fail2ban/fail2ban/issues/3787, remove it in the next release
|
|
setuptools
|
|
];
|
|
|
|
preConfigure = ''
|
|
for i in config/action.d/sendmail*.conf; do
|
|
substituteInPlace $i \
|
|
--replace /usr/sbin/sendmail sendmail
|
|
done
|
|
|
|
substituteInPlace config/filter.d/dovecot.conf \
|
|
--replace dovecot.service dovecot2.service
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
patches = [
|
|
# Adjust sshd filter for OpenSSH 9.8 new daemon name - remove next release
|
|
(fetchpatch {
|
|
url = "https://github.com/fail2ban/fail2ban/commit/2fed408c05ac5206b490368d94599869bd6a056d.patch";
|
|
hash = "sha256-uyrCdcBm0QyA97IpHzuGfiQbSSvhGH6YaQluG5jVIiI=";
|
|
})
|
|
# filter.d/sshd.conf: ungroup (unneeded for _daemon) - remove next release
|
|
(fetchpatch {
|
|
url = "https://github.com/fail2ban/fail2ban/commit/50ff131a0fd8f54fdeb14b48353f842ee8ae8c1a.patch";
|
|
hash = "sha256-YGsUPfQRRDVqhBl7LogEfY0JqpLNkwPjihWIjfGdtnQ=";
|
|
})
|
|
];
|
|
|
|
preInstall = ''
|
|
substituteInPlace setup.py --replace /usr/share/doc/ share/doc/
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/4968
|
|
${python3.pythonOnBuildForHost.interpreter} setup.py install_data --install-dir=$out --root=$out
|
|
'';
|
|
|
|
postInstall =
|
|
let
|
|
sitePackages = "$out/${python3.sitePackages}";
|
|
in
|
|
''
|
|
install -m 644 -D -t "$out/lib/systemd/system" build/fail2ban.service
|
|
# Replace binary paths
|
|
sed -i "s#build/bdist.*/wheel/fail2ban.*/scripts/#$out/bin/#g" $out/lib/systemd/system/fail2ban.service
|
|
# Delete creating the runtime directory, systemd does that
|
|
sed -i "/ExecStartPre/d" $out/lib/systemd/system/fail2ban.service
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/4968
|
|
rm -r "${sitePackages}/etc"
|
|
|
|
installManPage man/*.[1-9]
|
|
|
|
# This is a symlink to the build python version created by `updatePyExec`, seemingly to assure the same python version is used?
|
|
rm $out/bin/fail2ban-python
|
|
ln -s ${python3.interpreter} $out/bin/fail2ban-python
|
|
|
|
'' + lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
# see https://github.com/NixOS/nixpkgs/issues/4968
|
|
rm -r "${sitePackages}/usr"
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) fail2ban; };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.fail2ban.org/";
|
|
description = "Program that scans log files for repeated failing login attempts and bans IP addresses";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
};
|
|
}
|