nixpkgs/pkgs/os-specific/linux/nftables/default.nix
Vladimír Čunát 2e6bf42a22
Merge branch 'master' into staging-next
There ver very many conflicts, basically all due to
name -> pname+version.  Fortunately, almost everything was auto-resolved
by kdiff3, and for now I just fixed up a couple evaluation problems,
as verified by the tarball job.  There might be some fallback to these
conflicts, but I believe it should be minimal.

Hydra nixpkgs: ?compare=1538299
2019-08-24 08:55:37 +02:00

37 lines
909 B
Nix

{ stdenv, fetchurl, pkgconfig, bison, flex
, libmnl, libnftnl, libpcap
, gmp, jansson, readline
, withXtables ? false , iptables
}:
with stdenv.lib;
stdenv.mkDerivation rec {
version = "0.9.1";
pname = "nftables";
src = fetchurl {
url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.bz2";
sha256 = "1kjg3dykf2aw76d76viz1hm0rav57nfbdwlngawgn2slxmlbplza";
};
configureFlags = [
"--disable-man-doc"
"--with-json"
] ++ optional withXtables "--with-xtables";
nativeBuildInputs = [ pkgconfig bison flex ];
buildInputs = [
libmnl libnftnl libpcap
gmp readline jansson
] ++ optional withXtables iptables;
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;
};
}