summary refs log tree commit diff
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-06-12 13:59:14 -0400
committerfigsoda <figsoda@pm.me>2021-06-12 13:59:14 -0400
commit682649cbc05124b8c7a6a3da5364da59ad778258 (patch)
tree11f2c2322961780e130836686f91adbe2118624d
parente075fef89f1ef6d09e85201ace4a7a53385a78c1 (diff)
downloadnixpkgs-682649cbc05124b8c7a6a3da5364da59ad778258.tar
nixpkgs-682649cbc05124b8c7a6a3da5364da59ad778258.tar.gz
nixpkgs-682649cbc05124b8c7a6a3da5364da59ad778258.tar.bz2
nixpkgs-682649cbc05124b8c7a6a3da5364da59ad778258.tar.lz
nixpkgs-682649cbc05124b8c7a6a3da5364da59ad778258.tar.xz
nixpkgs-682649cbc05124b8c7a6a3da5364da59ad778258.tar.zst
nixpkgs-682649cbc05124b8c7a6a3da5364da59ad778258.zip
ripgrep: 12.1.1 -> 13.0.0
-rw-r--r--pkgs/tools/text/ripgrep/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/text/ripgrep/default.nix b/pkgs/tools/text/ripgrep/default.nix
index ca337deec93..3fa202135f5 100644
--- a/pkgs/tools/text/ripgrep/default.nix
+++ b/pkgs/tools/text/ripgrep/default.nix
@@ -11,16 +11,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "ripgrep";
-  version = "12.1.1";
+  version = "13.0.0";
 
   src = fetchFromGitHub {
     owner = "BurntSushi";
     repo = pname;
     rev = version;
-    sha256 = "1hqps7l5qrjh9f914r5i6kmcz6f1yb951nv4lby0cjnp5l253kps";
+    sha256 = "0pdcjzfi0fclbzmmf701fdizb95iw427vy3m1svy6gdn2zwj3ldr";
   };
 
-  cargoSha256 = "1nyfxma2vwfq6r614ng8qq8vanb540a5z0ibs85wz5sjm3hp1l4f";
+  cargoSha256 = "1kfdgh8dra4jxgcdb0lln5wwrimz0dpp33bq3h7jgs8ngaq2a9wp";
 
   cargoBuildFlags = lib.optional withPCRE2 "--features pcre2";