Unverified Commit 0c0da868 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #262270 from helsinki-systems/upd/nftables

nftables: 1.0.8 -> 1.0.9
parents 4f4312a7 c81e533e
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -11,12 +11,12 @@
}:

stdenv.mkDerivation rec {
  version = "1.0.8";
  version = "1.0.9";
  pname = "nftables";

  src = fetchurl {
    url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.xz";
    hash = "sha256-k3N0DeQagtvJiBjgpGoHP664qNBon6T6GnQ5nDK/PVA=";
    hash = "sha256-o8MEzZugYSOe4EdPmvuTipu5nYm5YCRvZvDDoKheFM0=";
  };

  nativeBuildInputs = [
@@ -44,7 +44,8 @@ stdenv.mkDerivation rec {
    ++ lib.optional withXtables "--with-xtables";

  passthru.tests = {
    inherit (nixosTests) firewall-nftables lxd-nftables;
    inherit (nixosTests) firewall-nftables;
    lxd-nftables = nixosTests.lxd.nftables;
    nat = { inherit (nixosTests.nat.nftables) firewall standalone; };
  };