ripgrep: 14.0.2 -> 14.0.3 (#270926)

This commit is contained in:
Miguel Madrid-Mencía 2023-11-29 17:23:23 +01:00 committed by GitHub
parent 4cc0a8950b
commit 9a583c7c83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,16 +10,16 @@
rustPlatform.buildRustPackage rec {
pname = "ripgrep";
version = "14.0.2";
version = "14.0.3";
src = fetchFromGitHub {
owner = "BurntSushi";
repo = pname;
rev = version;
hash = "sha256-r0o2hT5t4x7fmVVxE3x+vHQnEzY9E4nvLyZ4DDNCY9o=";
hash = "sha256-NBGbiy+1AUIBJFx6kcGPSKo08a+dkNo4rNH2I1pki4U=";
};
cargoHash = "sha256-J7vEeHSCQ4xbKMUOQ/lCcnnwmnKaz7neOvrY1pAVtXg=";
cargoHash = "sha256-s6oK0/eL+NAhG3ySUlJBRatUuWXxfRVgAvlJm++0lkg=";
nativeBuildInputs = [ installShellFiles ]
++ lib.optional withPCRE2 pkg-config;
@ -51,6 +51,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "A utility that combines the usability of The Silver Searcher with the raw speed of grep";
homepage = "https://github.com/BurntSushi/ripgrep";
changelog = "https://github.com/BurntSushi/ripgrep/releases/tag/${version}";
license = with licenses; [ unlicense /* or */ mit ];
maintainers = with maintainers; [ globin ma27 zowoq ];
mainProgram = "rg";