Merge pull request #198551 from Infinidoge/bump/rhash

authored by Sandro and committed by GitHub e5bcbab4 c1647c10

+2 -11
+2 -11
pkgs/tools/security/rhash/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , which 6 5 , enableStatic ? stdenv.hostPlatform.isStatic 7 6 }: 8 7 9 8 stdenv.mkDerivation rec { 10 - version = "1.4.2"; 9 + version = "1.4.3"; 11 10 pname = "rhash"; 12 11 13 12 src = fetchFromGitHub { 14 13 owner = "rhash"; 15 14 repo = "RHash"; 16 15 rev = "v${version}"; 17 - sha256 = "sha256-HkDgWwHoRWCNtWyfP4sj3veEd+KT5J7yL4J4Z/hJcrE="; 16 + sha256 = "sha256-R+dHYG0DBI1uo+yF/pxoTv/V9WSfph043bH6erZjeCE="; 18 17 }; 19 - 20 - patches = [ 21 - # Fix clang configuration; remove with next release 22 - (fetchpatch { 23 - url = "https://github.com/rhash/RHash/commit/4dc506066cf1727b021e6352535a8bb315c3f8dc.patch"; 24 - sha256 = "0i5jz2s37h278c8d36pzphhp8rjy660zmhpg2cqlp960f6ny8wwj"; 25 - }) 26 - ]; 27 18 28 19 nativeBuildInputs = [ which ]; 29 20