1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00
nixpkgs/pkgs/tools/networking/ferm/default.nix

47 lines
1.5 KiB
Nix
Raw Normal View History

2019-11-29 12:25:52 +00:00
{ 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
inherit (stdenv.lib.versions) majorMinor;
in stdenv.mkDerivation rec {
2020-04-13 17:37:57 +01:00
version = "2.5.1";
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";
2020-04-13 17:37:57 +01:00
sha256 = "0awl9s243sxgayr2fcmfks8xydhrmb9gy8bd9sfq738dgq7vybjb";
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
2020-04-13 17:37:57 +01:00
wrapProgram "$i" --prefix PATH : "${stdenv.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 = {
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.
'';
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [mic92];
platforms = stdenv.lib.platforms.linux;
};
}