iwd: 1.17 -> 1.19

+2 -11
+2 -11
pkgs/os-specific/linux/iwd/default.nix
··· 8 8 , readline 9 9 , openssl 10 10 , python3Packages 11 - , fetchpatch 12 11 }: 13 12 14 13 stdenv.mkDerivation rec { 15 14 pname = "iwd"; 16 - version = "1.17"; 15 + version = "1.19"; 17 16 18 17 src = fetchgit { 19 18 url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git"; 20 19 rev = version; 21 - sha256 = "sha256-uWWdKjxctz8fdiIkSiuOYNcZPhxEWDXaA8QPLnd/I9c="; 20 + sha256 = "sha256-sMET4ouZ33SZRnkqJBadVvIDYMCOi7pib6d1zt1EJ8k="; 22 21 }; 23 22 24 23 outputs = [ "out" "man" ] ··· 55 54 "--with-systemd-modloaddir=${placeholder "out"}/etc/modules-load.d/" # maybe 56 55 "--with-systemd-unitdir=${placeholder "out"}/lib/systemd/system/" 57 56 "--with-systemd-networkdir=${placeholder "out"}/lib/systemd/network/" 58 - ]; 59 - 60 - patches = [ 61 - # Fix failure in test-eapol. Remove when bumping to 1.18 62 - (fetchpatch { 63 - url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git/patch/?id=ed10b00afa3f4c087b46d7ba0b60a47bd05d8b39"; 64 - sha256 = "0n8ixrbfh428ajncakcb9kd2n4fw82kw9sfskn1d9ny0lrg39nvg"; 65 - }) 66 57 ]; 67 58 68 59 postUnpack = ''