summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorBenno Fünfstück <benno.fuenfstueck@gmail.com>2016-09-29 00:51:14 +0200
committerBenno Fünfstück <benno.fuenfstueck@gmail.com>2016-09-29 00:51:14 +0200
commit4c493a32f90b674b7c3123b51dce35dbaff18f1e (patch)
tree45eefa72c1e83b0deb4be26f6bc4ac141307318e /pkgs/tools/text
parent0a2b08884c7f1e1d2f44beaf08ef42e9803c6f08 (diff)
downloadnixlib-4c493a32f90b674b7c3123b51dce35dbaff18f1e.tar
nixlib-4c493a32f90b674b7c3123b51dce35dbaff18f1e.tar.gz
nixlib-4c493a32f90b674b7c3123b51dce35dbaff18f1e.tar.bz2
nixlib-4c493a32f90b674b7c3123b51dce35dbaff18f1e.tar.lz
nixlib-4c493a32f90b674b7c3123b51dce35dbaff18f1e.tar.xz
nixlib-4c493a32f90b674b7c3123b51dce35dbaff18f1e.tar.zst
nixlib-4c493a32f90b674b7c3123b51dce35dbaff18f1e.zip
ripgrep: update 0.1.17 -> 0.2.1
Diffstat (limited to 'pkgs/tools/text')
-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 ca08a2371283..3c2ef2e9533a 100644
--- a/pkgs/tools/text/ripgrep/default.nix
+++ b/pkgs/tools/text/ripgrep/default.nix
@@ -4,16 +4,16 @@ with rustPlatform;
 
 buildRustPackage rec {
   name = "ripgrep-${version}";
-  version = "0.1.17";
+  version = "0.2.1";
 
   src = fetchFromGitHub {
     owner = "BurntSushi";
     repo = "ripgrep";
     rev = "${version}";
-    sha256 = "18bpb1jl9fnipgp9icf1wwzm7934lk0ycbpvzlhvs2873zqhv6a6";
+    sha256 = "0whw6hqjkf6sysrfv931jaia2hqhy8m9aa5rxax1kygm4snz4j85";
   };
 
-  depsSha256 = "0fzjk5qynxivxmmz7r1za7mzdbdwzwwvxlc5a6cmxmzwnix2lby3";
+  depsSha256 = "10f7pkgaxwizl7kzhkry7wx1rgm9wsybwkk92myc29s7sqir2mx4";
 
   meta = with stdenv.lib; {
     description = "An untility that combines the usability of The Silver Searcher with the raw speed of grep";