nixpkgs/pkgs/by-name/fe/ferm/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

63 lines
1.5 KiB
Nix

{
lib,
stdenv,
fetchurl,
makeWrapper,
perl,
iptables,
nixosTests,
}:
let
inherit (lib.versions) majorMinor;
in
stdenv.mkDerivation rec {
version = "2.7";
pname = "ferm";
src = fetchurl {
url = "http://ferm.foo-projects.org/download/${majorMinor version}/ferm-${version}.tar.xz";
sha256 = "sha256-wA2RDVOU5pZ1YI617g9QTVz9pB6ZCi2akbqsbfk+P5I=";
};
patches = [
./import-ferm-wrapped.patch
];
# perl is used at build time to gather the ferm version.
nativeBuildInputs = [
makeWrapper
perl
];
buildInputs = [ perl ];
makeFlags = [
"PERL=perl"
"PREFIX=${placeholder "out"}"
];
postInstall = ''
rm -r $out/lib/systemd
for i in "$out/sbin/"*; do
wrapProgram "$i" --prefix PATH : "${lib.makeBinPath [ iptables ]}"
done
'';
passthru.tests.ferm = nixosTests.ferm;
meta = {
homepage = "http://ferm.foo-projects.org/";
description = "Tool to maintain complex firewalls";
longDescription = ''
ferm is a tool to maintain complex firewalls, without having the trouble to
rewrite the complex rules over and over again. ferm allows the entire
firewall rule set to be stored in a separate file, and to be loaded with one
command. The firewall configuration resembles structured programming-like
language, which can contain levels and lists.
'';
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ mic92 ];
platforms = lib.platforms.linux;
};
}