ripgrep: 14.0.3 -> 14.1.0

authored by R. Ryantm and committed by zowoq b760bfbd a43475ef

+3 -3
+3 -3
pkgs/tools/text/ripgrep/default.nix
··· 14 14 rg = "${stdenv.hostPlatform.emulator buildPackages} $out/bin/rg"; 15 15 in rustPlatform.buildRustPackage rec { 16 16 pname = "ripgrep"; 17 - version = "14.0.3"; 17 + version = "14.1.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "BurntSushi"; 21 21 repo = pname; 22 22 rev = version; 23 - hash = "sha256-NBGbiy+1AUIBJFx6kcGPSKo08a+dkNo4rNH2I1pki4U="; 23 + hash = "sha256-CBU1GzgWMPTVsgaPMy39VRcENw5iWRUrRpjyuGiZpPI="; 24 24 }; 25 25 26 - cargoHash = "sha256-s6oK0/eL+NAhG3ySUlJBRatUuWXxfRVgAvlJm++0lkg="; 26 + cargoHash = "sha256-8FxN5MhYduMkzym7Xx4dnVbWaBKv9pgbXMIRGiRRQew="; 27 27 28 28 nativeBuildInputs = [ installShellFiles ] 29 29 ++ lib.optional withPCRE2 pkg-config;