about summary refs log tree commit diff
path: root/pkgs/tools/text/ripgrep
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2023-11-28 13:22:40 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2023-11-28 13:30:28 +1000
commite274d5a6c23e8e9fab5f24a1cc71d6994e74f4b2 (patch)
tree2d7c817611c28ef730eb2de0f77515e0b750880b /pkgs/tools/text/ripgrep
parent68efec90dbc47174e8333f36b88ff203594fdeea (diff)
downloadnixlib-e274d5a6c23e8e9fab5f24a1cc71d6994e74f4b2.tar
nixlib-e274d5a6c23e8e9fab5f24a1cc71d6994e74f4b2.tar.gz
nixlib-e274d5a6c23e8e9fab5f24a1cc71d6994e74f4b2.tar.bz2
nixlib-e274d5a6c23e8e9fab5f24a1cc71d6994e74f4b2.tar.lz
nixlib-e274d5a6c23e8e9fab5f24a1cc71d6994e74f4b2.tar.xz
nixlib-e274d5a6c23e8e9fab5f24a1cc71d6994e74f4b2.tar.zst
nixlib-e274d5a6c23e8e9fab5f24a1cc71d6994e74f4b2.zip
ripgrep: 14.0.1 -> 14.0.2
Diff: https://github.com/BurntSushi/ripgrep/compare/14.0.1...14.0.2
Diffstat (limited to 'pkgs/tools/text/ripgrep')
-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 9e1512342ab9..c7809209414c 100644
--- a/pkgs/tools/text/ripgrep/default.nix
+++ b/pkgs/tools/text/ripgrep/default.nix
@@ -10,16 +10,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "ripgrep";
-  version = "14.0.1";
+  version = "14.0.2";
 
   src = fetchFromGitHub {
     owner = "BurntSushi";
     repo = pname;
     rev = version;
-    sha256 = "sha256-yVRjOwifxjxuvuwF2d7QCNb7PaT3ELoGP34T2RE1ZVY=";
+    hash = "sha256-r0o2hT5t4x7fmVVxE3x+vHQnEzY9E4nvLyZ4DDNCY9o=";
   };
 
-  cargoSha256 = "sha256-c4rJYZkAa8vqw3/ccOjGMoyzqq7CVDAMOme9/ORmx9M=";
+  cargoHash = "sha256-J7vEeHSCQ4xbKMUOQ/lCcnnwmnKaz7neOvrY1pAVtXg=";
 
   nativeBuildInputs = [ installShellFiles ]
     ++ lib.optional withPCRE2 pkg-config;