9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, pkg-config, bison, file, flex
|
|
, asciidoc, libxslt, findXMLCatalogs, docbook_xml_dtd_45, docbook_xsl
|
|
, libmnl, libnftnl, libpcap
|
|
, gmp, jansson, readline
|
|
, withDebugSymbols ? false
|
|
, withPython ? false , python3
|
|
, withXtables ? false , iptables
|
|
}:
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.7";
|
|
pname = "nftables";
|
|
|
|
src = fetchurl {
|
|
url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.bz2";
|
|
sha256 = "1c1c2475nifncv0ng8z77h2dpanlsx0bhqm15k00jb3a6a68lszy";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config bison file flex
|
|
asciidoc docbook_xml_dtd_45 docbook_xsl findXMLCatalogs libxslt
|
|
];
|
|
|
|
buildInputs = [
|
|
libmnl libnftnl libpcap
|
|
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";
|
|
|
|
meta = {
|
|
description = "The project that aims to replace the existing {ip,ip6,arp,eb}tables framework";
|
|
homepage = "https://netfilter.org/projects/nftables/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ izorkin ];
|
|
};
|
|
}
|