Merge pull request #240681 from delroth/sudo-1.9.14

sudo: 1.9.13p3 -> 1.9.14p3

authored by

Pol Dellaiera and committed by
GitHub
b56ed968 a2fab691

+12 -2
+12 -2
pkgs/tools/security/sudo/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchurl 4 + , fetchpatch 4 5 , buildPackages 5 6 , coreutils 6 7 , pam ··· 14 15 15 16 stdenv.mkDerivation rec { 16 17 pname = "sudo"; 17 - version = "1.9.13p3"; 18 + version = "1.9.14p3"; 18 19 19 20 src = fetchurl { 20 21 url = "https://www.sudo.ws/dist/${pname}-${version}.tar.gz"; 21 - hash = "sha256-kjNKEruT4MBWsJ9T4lXMt9b2fGNQ4oE82Vk87sp4Vgs="; 22 + hash = "sha256-oIMYscS8hYLABNTNmuKQOrxUnn5GuoFeQf6B0cB4K2I="; 22 23 }; 24 + 25 + patches = [ 26 + # Extra bugfix not included in 1.9.14p3 to address a bug that impacts the 27 + # NixOS test suite for sudo. 28 + (fetchpatch { 29 + url = "https://github.com/sudo-project/sudo/commit/760c9c11074cb921ecc0da9fbb5f0a12afd46233.patch"; 30 + hash = "sha256-smwyoYEkaqfQYz9C4VVz59YMtKabOPpwhS+RBwXbWuE="; 31 + }) 32 + ]; 23 33 24 34 prePatch = '' 25 35 # do not set sticky bit in nix store