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

62 lines
1.8 KiB
Nix
Raw Normal View History

{ 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 18:14:48 +01:00
, libmnl, libnftnl, libpcap
2022-02-21 17:46:50 +00:00
, gmp, jansson, libedit
, autoreconfHook, fetchpatch
2019-11-13 09:52:54 +00:00
, withDebugSymbols ? false
, withPython ? false , python3
, withXtables ? true , iptables
2019-08-18 18:14:48 +01:00
}:
2021-01-15 14:45:37 +00:00
with lib;
2014-08-24 00:16:06 +01:00
stdenv.mkDerivation rec {
2022-02-21 17:46:50 +00:00
version = "1.0.2";
pname = "nftables";
2014-08-24 00:16:06 +01:00
src = fetchurl {
url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.bz2";
2022-02-21 17:46:50 +00:00
sha256 = "00jcjn1pl7qyqpg8pd4yhlkys7wbj4vkzgg73n27nmplzips6a0b";
2014-08-24 00:16:06 +01:00
};
2019-11-13 06:12:59 +00:00
nativeBuildInputs = [
2022-02-21 17:46:50 +00:00
autoreconfHook
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-24 00:16:06 +01:00
2019-08-18 18:14:48 +01:00
buildInputs = [
libmnl libnftnl libpcap
2022-02-21 17:46:50 +00:00
gmp jansson libedit
2019-11-13 09:52:54 +00:00
] ++ optional withXtables iptables
++ optional withPython python3;
preConfigure = ''
substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file
'';
2022-02-21 17:46:50 +00:00
patches = [
# fix build after 1.0.2 release, drop when updating to a newer release
(fetchpatch {
url = "https://git.netfilter.org/nftables/patch/?id=18a08fb7f0443f8bde83393bd6f69e23a04246b3";
sha256 = "03dzhd7fhg0d20ly4rffk4ra7wlxp731892dhp8zw67jwhys9ywz";
})
];
2019-11-13 09:52:54 +00:00
configureFlags = [
"--with-json"
2022-02-21 17:46:50 +00:00
"--with-cli=editline"
2019-11-13 09:52:54 +00:00
] ++ optional (!withDebugSymbols) "--disable-debug"
++ optional (!withPython) "--disable-python"
++ optional withPython "--enable-python"
++ optional withXtables "--with-xtables";
2014-08-24 00:16:06 +01:00
2019-08-18 18:14:48 +01:00
meta = {
description = "The project that aims to replace the existing {ip,ip6,arp,eb}tables framework";
2019-08-18 18:14:48 +01:00
homepage = "https://netfilter.org/projects/nftables/";
license = licenses.gpl2Only;
2014-08-24 00:16:06 +01:00
platforms = platforms.linux;
2021-11-18 13:58:15 +00:00
maintainers = with maintainers; [ izorkin ajs124 ];
2014-08-24 00:16:06 +01:00
};
}