about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/nftables/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/nftables/default.nix')
-rw-r--r--pkgs/os-specific/linux/nftables/default.nix67
1 files changed, 0 insertions, 67 deletions
diff --git a/pkgs/os-specific/linux/nftables/default.nix b/pkgs/os-specific/linux/nftables/default.nix
deleted file mode 100644
index 3680cd43efb7..000000000000
--- a/pkgs/os-specific/linux/nftables/default.nix
+++ /dev/null
@@ -1,67 +0,0 @@
-{ lib, stdenv, fetchurl, pkg-config, bison, flex
-, asciidoc, libxslt, findXMLCatalogs, docbook_xml_dtd_45, docbook_xsl
-, libmnl, libnftnl, libpcap
-, gmp, jansson
-, autoreconfHook
-, withDebugSymbols ? false
-, withCli ? true, libedit
-, withPython ? false, python3
-, withXtables ? true, iptables
-, nixosTests
-}:
-
-stdenv.mkDerivation rec {
-  version = "1.0.9";
-  pname = "nftables";
-
-  src = fetchurl {
-    url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.xz";
-    hash = "sha256-o8MEzZugYSOe4EdPmvuTipu5nYm5YCRvZvDDoKheFM0=";
-  };
-
-  nativeBuildInputs = [
-    autoreconfHook
-    pkg-config bison flex
-    asciidoc docbook_xml_dtd_45 docbook_xsl findXMLCatalogs libxslt
-  ];
-
-  buildInputs = [
-    libmnl libnftnl libpcap
-    gmp jansson
-  ] ++ lib.optional withCli libedit
-    ++ lib.optional withXtables iptables
-    ++ lib.optionals withPython [
-      python3
-      python3.pkgs.setuptools
-    ];
-
-  patches = [ ./fix-py-libnftables.patch ];
-
-  postPatch = ''
-    substituteInPlace "py/src/nftables.py" \
-      --subst-var-by "out" "$out"
-  '';
-
-  configureFlags = [
-    "--with-json"
-    (lib.withFeatureAs withCli "cli" "editline")
-  ] ++ lib.optional (!withDebugSymbols) "--disable-debug"
-    ++ lib.optional (!withPython) "--disable-python"
-    ++ lib.optional withPython "--enable-python"
-    ++ lib.optional withXtables "--with-xtables";
-
-  passthru.tests = {
-    inherit (nixosTests) firewall-nftables;
-    lxd-nftables = nixosTests.lxd.nftables;
-    nat = { inherit (nixosTests.nat.nftables) firewall standalone; };
-  };
-
-  meta = with lib; {
-    description = "The project that aims to replace the existing {ip,ip6,arp,eb}tables framework";
-    homepage = "https://netfilter.org/projects/nftables/";
-    license = licenses.gpl2Only;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ izorkin ] ++ teams.helsinki-systems.members;
-    mainProgram = "nft";
-  };
-}