5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
59 lines
1.7 KiB
Nix
59 lines
1.7 KiB
Nix
{ lib, stdenv, fetchurl, pkg-config, bison, flex
|
|
, asciidoc, libxslt, findXMLCatalogs, docbook_xml_dtd_45, docbook_xsl
|
|
, libmnl, libnftnl, libpcap
|
|
, gmp, jansson
|
|
, autoreconfHook
|
|
, withDebugSymbols ? false
|
|
, withCli ? true, libedit
|
|
, withPython ? false, python3
|
|
, withXtables ? true, iptables
|
|
, nixosTests
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.0.8";
|
|
pname = "nftables";
|
|
|
|
src = fetchurl {
|
|
url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.xz";
|
|
hash = "sha256-k3N0DeQagtvJiBjgpGoHP664qNBon6T6GnQ5nDK/PVA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config bison flex
|
|
asciidoc docbook_xml_dtd_45 docbook_xsl findXMLCatalogs libxslt
|
|
];
|
|
|
|
buildInputs = [
|
|
libmnl libnftnl libpcap
|
|
gmp jansson
|
|
] ++ lib.optional withCli libedit
|
|
++ lib.optional withXtables iptables
|
|
++ lib.optionals withPython [
|
|
python3
|
|
python3.pkgs.setuptools
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-json"
|
|
(lib.withFeatureAs withCli "cli" "editline")
|
|
] ++ lib.optional (!withDebugSymbols) "--disable-debug"
|
|
++ lib.optional (!withPython) "--disable-python"
|
|
++ lib.optional withPython "--enable-python"
|
|
++ lib.optional withXtables "--with-xtables";
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) firewall-nftables lxd-nftables;
|
|
nat = { inherit (nixosTests.nat.nftables) firewall standalone; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "The project that aims to replace the existing {ip,ip6,arp,eb}tables framework";
|
|
homepage = "https://netfilter.org/projects/nftables/";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ izorkin ajs124 ];
|
|
mainProgram = "nft";
|
|
};
|
|
}
|