2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, bison, file, flex
|
2019-11-13 06:12:59 +00:00
|
|
|
, asciidoc, libxslt, findXMLCatalogs, docbook_xml_dtd_45, docbook_xsl
|
2019-08-18 17:14:48 +00:00
|
|
|
, libmnl, libnftnl, libpcap
|
|
|
|
, gmp, jansson, readline
|
2019-11-13 09:52:54 +00:00
|
|
|
, withDebugSymbols ? false
|
|
|
|
, withPython ? false , python3
|
2019-08-18 17:14:48 +00:00
|
|
|
, withXtables ? false , iptables
|
|
|
|
}:
|
|
|
|
|
2021-01-15 14:45:37 +00:00
|
|
|
with lib;
|
2014-08-23 23:16:06 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-01-17 15:53:29 +00:00
|
|
|
version = "0.9.8";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "nftables";
|
2014-08-23 23:16:06 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.bz2";
|
2021-01-17 15:53:29 +00:00
|
|
|
sha256 = "1r4g22grhd4s1918wws9vggb8821sv4kkj8197ygxr6sar301z30";
|
2014-08-23 23:16:06 +00:00
|
|
|
};
|
|
|
|
|
2019-11-13 06:12:59 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config bison file flex
|
2020-10-31 15:38:30 +00:00
|
|
|
asciidoc docbook_xml_dtd_45 docbook_xsl findXMLCatalogs libxslt
|
2019-11-13 06:12:59 +00:00
|
|
|
];
|
2014-08-23 23:16:06 +00:00
|
|
|
|
2019-08-18 17:14:48 +00:00
|
|
|
buildInputs = [
|
|
|
|
libmnl libnftnl libpcap
|
2019-11-13 09:52:54 +00:00
|
|
|
gmp jansson readline
|
|
|
|
] ++ optional withXtables iptables
|
|
|
|
++ optional withPython python3;
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-json"
|
|
|
|
] ++ optional (!withDebugSymbols) "--disable-debug"
|
|
|
|
++ optional (!withPython) "--disable-python"
|
|
|
|
++ optional withPython "--enable-python"
|
|
|
|
++ optional withXtables "--with-xtables";
|
2014-08-23 23:16:06 +00:00
|
|
|
|
2019-08-18 17:14:48 +00:00
|
|
|
meta = {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "The project that aims to replace the existing {ip,ip6,arp,eb}tables framework";
|
2019-08-18 17:14:48 +00:00
|
|
|
homepage = "https://netfilter.org/projects/nftables/";
|
2014-08-23 23:16:06 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2020-10-31 15:38:30 +00:00
|
|
|
maintainers = with maintainers; [ izorkin ];
|
2014-08-23 23:16:06 +00:00
|
|
|
};
|
|
|
|
}
|