ena: 2.5.0 -> 2.7.1

This update is supposed to give us support for the 5.17 kernel according to the
2.7.0 release notes here: https://github.com/amzn/amzn-drivers/releases/tag/ena_linux_2.7.0

Unfortunately, in practice, it does not build with `linuxPackages_5_17`,
so I left that marked as broken.

It does work for 5.15 though, so we can use that, woo!

+3 -3
+3 -3
pkgs/os-specific/linux/ena/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, kernel }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "2.5.0"; 4 + version = "2.7.1"; 5 5 name = "ena-${version}-${kernel.version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "amzn"; 9 9 repo = "amzn-drivers"; 10 10 rev = "ena_linux_${version}"; 11 - sha256 = "sha256-uOf/1624UtjaZtrk7XyQpeUGdTNVDnzZJZMgU86i+SM="; 11 + sha256 = "sha256-JkGzmmsAmLvL9e+bg58H79GNHgsqydK/79VoWEq5/Mc="; 12 12 }; 13 13 14 14 hardeningDisable = [ "pic" ]; ··· 42 42 license = licenses.gpl2Only; 43 43 maintainers = [ maintainers.eelco ]; 44 44 platforms = platforms.linux; 45 - broken = kernel.kernelAtLeast "5.15"; 45 + broken = kernel.kernelAtLeast "5.17"; 46 46 }; 47 47 }