3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/ferm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, perl, 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 {
2022-05-26 03:53:52 +01:00
version = "2.7";
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";
2022-05-26 03:53:52 +01:00
sha256 = "sha256-wA2RDVOU5pZ1YI617g9QTVz9pB6ZCi2akbqsbfk+P5I=";
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
wrapProgram "$i" --prefix PATH : "${lib.makeBinPath [ iptables ]}"
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 = {
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
};
}