mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
nftables: update build configuration
This commit is contained in:
parent
4d9899ef13
commit
705bafb3cf
1 changed files with 19 additions and 9 deletions
|
@ -1,7 +1,9 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, bison, flex
|
{ stdenv, fetchurl, pkgconfig, bison, file, flex
|
||||||
, asciidoc, libxslt, findXMLCatalogs, docbook_xml_dtd_45, docbook_xsl
|
, asciidoc, libxslt, findXMLCatalogs, docbook_xml_dtd_45, docbook_xsl
|
||||||
, libmnl, libnftnl, libpcap
|
, libmnl, libnftnl, libpcap
|
||||||
, gmp, jansson, readline
|
, gmp, jansson, readline
|
||||||
|
, withDebugSymbols ? false
|
||||||
|
, withPython ? false , python3
|
||||||
, withXtables ? false , iptables
|
, withXtables ? false , iptables
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -16,19 +18,27 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1x8kalbggjq44j4916i6vyv1rb20dlh1dcsf9xvzqsry2j063djw";
|
sha256 = "1x8kalbggjq44j4916i6vyv1rb20dlh1dcsf9xvzqsry2j063djw";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [
|
|
||||||
"--with-json"
|
|
||||||
] ++ optional withXtables "--with-xtables";
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig bison flex
|
pkgconfig bison file flex
|
||||||
asciidoc libxslt findXMLCatalogs docbook_xml_dtd_45 docbook_xsl
|
asciidoc docbook_xml_dtd_45 docbook_xsl findXMLCatalogs libxslt
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libmnl libnftnl libpcap
|
libmnl libnftnl libpcap
|
||||||
gmp readline jansson
|
gmp jansson readline
|
||||||
] ++ optional withXtables iptables;
|
] ++ 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";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "The project that aims to replace the existing {ip,ip6,arp,eb}tables framework";
|
description = "The project that aims to replace the existing {ip,ip6,arp,eb}tables framework";
|
||||||
|
|
Loading…
Reference in a new issue