summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-05-09 16:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-05-09 16:20:00 -0500
commit8772cee9f9cfdd3be6bd483c7ed7e1720dfea04a (patch)
treead197ac0569db306c11dae49d0cf17fb4b539523 /pkgs/tools/text
parentd373d80b1207d52621961b16aa4a3438e4f98167 (diff)
downloadnixpkgs-8772cee9f9cfdd3be6bd483c7ed7e1720dfea04a.tar
nixpkgs-8772cee9f9cfdd3be6bd483c7ed7e1720dfea04a.tar.gz
nixpkgs-8772cee9f9cfdd3be6bd483c7ed7e1720dfea04a.tar.bz2
nixpkgs-8772cee9f9cfdd3be6bd483c7ed7e1720dfea04a.tar.lz
nixpkgs-8772cee9f9cfdd3be6bd483c7ed7e1720dfea04a.tar.xz
nixpkgs-8772cee9f9cfdd3be6bd483c7ed7e1720dfea04a.tar.zst
nixpkgs-8772cee9f9cfdd3be6bd483c7ed7e1720dfea04a.zip
ripgrep: 12.0.1 -> 12.1.0
Changelog: https://github.com/BurntSushi/ripgrep/releases/tag/12.1.0
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/ripgrep/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/tools/text/ripgrep/default.nix b/pkgs/tools/text/ripgrep/default.nix
index 9eba451c54a..ab589eb87fc 100644
--- a/pkgs/tools/text/ripgrep/default.nix
+++ b/pkgs/tools/text/ripgrep/default.nix
@@ -1,9 +1,7 @@
 { stdenv
 , fetchFromGitHub
 , rustPlatform
-, asciidoc
-, docbook_xsl
-, libxslt
+, asciidoctor
 , installShellFiles
 , Security
 , withPCRE2 ? true
@@ -12,20 +10,20 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "ripgrep";
-  version = "12.0.1";
+  version = "12.1.0";
 
   src = fetchFromGitHub {
     owner = "BurntSushi";
     repo = pname;
     rev = version;
-    sha256 = "1c0v51s05kbg9825n6mvpizhkkgz38wl7hp8f3vzbjfg4i8l8wb0";
+    sha256 = "1vgkk78c25ia9y4q5psrh7xrlbfdn7dz7bc20kci40n8zr0vjwww";
   };
 
-  cargoSha256 = "0i8x2xgri8f8mzrlkc8l2yzcgczl35nw4bmwg09d343mjkmk6d8y";
+  cargoSha256 = "143lnf4yah9ik7v8rphv7gbvr2ckhjpmy8zfgqml1n3fqxiqvxnb";
 
   cargoBuildFlags = stdenv.lib.optional withPCRE2 "--features pcre2";
 
-  nativeBuildInputs = [ asciidoc docbook_xsl libxslt installShellFiles ];
+  nativeBuildInputs = [ asciidoctor installShellFiles ];
   buildInputs = (stdenv.lib.optional withPCRE2 pcre2)
   ++ (stdenv.lib.optional stdenv.isDarwin Security);