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

nftables: 1.0.8 -> 1.0.9

authored by Martin Weinelt and committed by GitHub 0c0da868 4f4312a7

+4 -3
+4 -3
pkgs/os-specific/linux/nftables/default.nix
··· 11 11 }: 12 12 13 13 stdenv.mkDerivation rec { 14 - version = "1.0.8"; 14 + version = "1.0.9"; 15 15 pname = "nftables"; 16 16 17 17 src = fetchurl { 18 18 url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.xz"; 19 - hash = "sha256-k3N0DeQagtvJiBjgpGoHP664qNBon6T6GnQ5nDK/PVA="; 19 + hash = "sha256-o8MEzZugYSOe4EdPmvuTipu5nYm5YCRvZvDDoKheFM0="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ ··· 44 44 ++ lib.optional withXtables "--with-xtables"; 45 45 46 46 passthru.tests = { 47 - inherit (nixosTests) firewall-nftables lxd-nftables; 47 + inherit (nixosTests) firewall-nftables; 48 + lxd-nftables = nixosTests.lxd.nftables; 48 49 nat = { inherit (nixosTests.nat.nftables) firewall standalone; }; 49 50 }; 50 51