2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, perl, ebtables, ipset, iptables, nixosTests }:
|
2016-08-21 22:12:19 +01:00
|
|
|
|
2019-12-02 17:04:37 +00:00
|
|
|
let
|
2021-01-15 09:19:50 +00:00
|
|
|
inherit (lib.versions) majorMinor;
|
2019-12-02 17:04:37 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2021-02-14 17:31:21 +00:00
|
|
|
version = "2.6";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ferm";
|
2016-08-21 22:12:19 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-02 17:04:37 +00:00
|
|
|
url = "http://ferm.foo-projects.org/download/${majorMinor version}/ferm-${version}.tar.xz";
|
2021-02-14 17:31:21 +00:00
|
|
|
sha256 = "sha256-aJVBRl58Bzy9YEyc0Y8RPDHAtBuxJhRyalmxfkQFiIU=";
|
2016-08-21 22:12:19 +01:00
|
|
|
};
|
|
|
|
|
2020-04-13 17:37:57 +01:00
|
|
|
# perl is used at build time to gather the ferm version.
|
|
|
|
nativeBuildInputs = [ makeWrapper perl ];
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"PERL=perl"
|
|
|
|
"PREFIX=${placeholder "out"}"
|
|
|
|
];
|
|
|
|
|
2016-08-21 22:12:19 +01:00
|
|
|
postInstall = ''
|
|
|
|
rm -r $out/lib/systemd
|
|
|
|
for i in "$out/sbin/"*; do
|
2021-01-15 09:19:50 +00:00
|
|
|
wrapProgram "$i" --prefix PATH : "${lib.makeBinPath [ iptables ipset ebtables ]}"
|
2016-08-21 22:12:19 +01:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2019-11-29 12:25:52 +00:00
|
|
|
passthru.tests.ferm = nixosTests.ferm;
|
|
|
|
|
2016-08-21 22:12:19 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://ferm.foo-projects.org/";
|
2016-08-21 22:12:19 +01:00
|
|
|
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.
|
|
|
|
'';
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = with lib.maintainers; [mic92];
|
|
|
|
platforms = lib.platforms.linux;
|
2016-08-21 22:12:19 +01:00
|
|
|
};
|
|
|
|
}
|