From a50558ec92d4fbdec9ea62ca4e657db23cf060fc Mon Sep 17 00:00:00 2001 From: Muhammad Falak R Wani Date: Mon, 9 Sep 2024 09:33:28 +0530 Subject: [PATCH] ripgrep: 14.1.0 -> 14.1.1 Diff: https://github.com/BurntSushi/ripgrep/compare/14.1.0...14.1.1 Changelog: https://github.com/BurntSushi/ripgrep/releases/tag/14.1.1 Signed-off-by: Muhammad Falak R Wani --- pkgs/tools/text/ripgrep/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/text/ripgrep/default.nix b/pkgs/tools/text/ripgrep/default.nix index 35e56b7fb3a4..a89cd2ae3904 100644 --- a/pkgs/tools/text/ripgrep/default.nix +++ b/pkgs/tools/text/ripgrep/default.nix @@ -14,16 +14,16 @@ let rg = "${stdenv.hostPlatform.emulator buildPackages} $out/bin/rg"; in rustPlatform.buildRustPackage rec { pname = "ripgrep"; - version = "14.1.0"; + version = "14.1.1"; src = fetchFromGitHub { owner = "BurntSushi"; repo = pname; rev = version; - hash = "sha256-CBU1GzgWMPTVsgaPMy39VRcENw5iWRUrRpjyuGiZpPI="; + hash = "sha256-gyWnahj1A+iXUQlQ1O1H1u7K5euYQOld9qWm99Vjaeg="; }; - cargoHash = "sha256-8FxN5MhYduMkzym7Xx4dnVbWaBKv9pgbXMIRGiRRQew="; + cargoHash = "sha256-b+iA8iTYWlczBpNq9eyHrWG8LMU4WPBzaU6pQRht+yE="; nativeBuildInputs = [ installShellFiles ] ++ lib.optional withPCRE2 pkg-config;