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

52 lines
1.5 KiB
Nix
Raw Normal View History

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