nixpkgs/pkgs/os-specific/linux/iptables/default.nix

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

61 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl
, autoreconfHook, pkg-config, pruneLibtoolFiles, flex, bison
, libmnl, libnetfilter_conntrack, libnfnetlink, libnftnl, libpcap
, nftablesCompat ? true
, gitUpdater
}:
stdenv.mkDerivation rec {
version = "1.8.10";
pname = "iptables";
src = fetchurl {
2023-04-01 13:17:23 +03:00
url = "https://www.netfilter.org/projects/${pname}/files/${pname}-${version}.tar.xz";
sha256 = "XMJVwYk1bjF9BwdVzpNx62Oht4PDRJj7jDAmTzzFnJw=";
};
2022-05-15 11:51:48 +03:00
outputs = [ "out" "dev" "man" ];
nativeBuildInputs = [
autoreconfHook pkg-config pruneLibtoolFiles flex bison
];
2016-01-01 04:54:56 +03:00
buildInputs = [ libmnl libnetfilter_conntrack libnfnetlink libnftnl libpcap ];
2016-01-01 04:54:56 +03:00
configureFlags = [
"--enable-bpf-compiler"
"--enable-devel"
"--enable-libipq"
"--enable-nfsynproxy"
"--enable-shared"
2022-05-15 11:51:48 +03:00
] ++ lib.optional (!nftablesCompat) "--disable-nftables";
2017-01-22 04:20:00 +03:00
enableParallelBuilding = true;
2022-05-15 11:51:48 +03:00
postInstall = lib.optionalString nftablesCompat ''
rm $out/sbin/{iptables,iptables-restore,iptables-save,ip6tables,ip6tables-restore,ip6tables-save}
ln -sv xtables-nft-multi $out/bin/iptables
ln -sv xtables-nft-multi $out/bin/iptables-restore
ln -sv xtables-nft-multi $out/bin/iptables-save
ln -sv xtables-nft-multi $out/bin/ip6tables
ln -sv xtables-nft-multi $out/bin/ip6tables-restore
ln -sv xtables-nft-multi $out/bin/ip6tables-save
'';
passthru = {
updateScript = gitUpdater {
url = "https://git.netfilter.org/iptables";
rev-prefix = "v";
};
};
2022-05-15 11:51:48 +03:00
meta = with lib; {
description = "A program to configure the Linux IP packet filtering ruleset";
homepage = "https://www.netfilter.org/projects/iptables/index.html";
2017-01-22 04:20:00 +03:00
platforms = platforms.linux;
maintainers = with maintainers; [ fpletz ];
2018-08-30 01:34:22 +03:00
license = licenses.gpl2;
downloadPage = "https://www.netfilter.org/projects/iptables/files/";
};
}