2020-03-16 03:07:49 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
2020-05-09 23:20:00 +02:00
|
|
|
, asciidoctor
|
2020-03-16 03:07:49 +01:00
|
|
|
, installShellFiles
|
2018-09-08 14:21:25 +02:00
|
|
|
, Security
|
2020-03-16 03:07:49 +01:00
|
|
|
, withPCRE2 ? true
|
|
|
|
, pcre2 ? null
|
2018-09-08 14:21:25 +02:00
|
|
|
}:
|
2016-09-23 22:39:58 +02:00
|
|
|
|
2018-02-12 12:34:07 +01:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-04-16 22:27:05 +02:00
|
|
|
pname = "ripgrep";
|
2020-05-29 15:51:21 +02:00
|
|
|
version = "12.1.1";
|
2016-09-23 22:39:58 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "BurntSushi";
|
2019-04-16 22:27:05 +02:00
|
|
|
repo = pname;
|
2018-08-04 22:59:33 +02:00
|
|
|
rev = version;
|
2020-05-29 15:51:21 +02:00
|
|
|
sha256 = "1hqps7l5qrjh9f914r5i6kmcz6f1yb951nv4lby0cjnp5l253kps";
|
2016-09-23 22:39:58 +02:00
|
|
|
};
|
|
|
|
|
2020-05-29 15:51:21 +02:00
|
|
|
cargoSha256 = "03wf9r2csi6jpa7v5sw5lpxkrk4wfzwmzx7k3991q3bdjzcwnnwp";
|
2018-09-08 14:21:25 +02:00
|
|
|
|
|
|
|
cargoBuildFlags = stdenv.lib.optional withPCRE2 "--features pcre2";
|
2018-02-12 12:34:07 +01:00
|
|
|
|
2020-05-09 23:20:00 +02:00
|
|
|
nativeBuildInputs = [ asciidoctor installShellFiles ];
|
2018-09-08 14:21:25 +02:00
|
|
|
buildInputs = (stdenv.lib.optional withPCRE2 pcre2)
|
2020-03-16 03:07:49 +01:00
|
|
|
++ (stdenv.lib.optional stdenv.isDarwin Security);
|
2016-09-23 22:39:58 +02:00
|
|
|
|
2017-03-10 08:12:16 +01:00
|
|
|
preFixup = ''
|
2020-03-20 07:47:20 +01:00
|
|
|
installManPage $releaseDir/build/ripgrep-*/out/rg.1
|
|
|
|
|
|
|
|
installShellCompletion $releaseDir/build/ripgrep-*/out/rg.{bash,fish}
|
2020-03-16 03:07:49 +01:00
|
|
|
installShellCompletion --zsh "$src/complete/_rg"
|
2017-03-10 08:12:16 +01:00
|
|
|
'';
|
|
|
|
|
2016-09-23 22:39:58 +02:00
|
|
|
meta = with stdenv.lib; {
|
2016-12-16 00:41:22 +01:00
|
|
|
description = "A utility that combines the usability of The Silver Searcher with the raw speed of grep";
|
2020-03-16 03:07:49 +01:00
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep";
|
2017-08-25 00:25:02 +02:00
|
|
|
license = with licenses; [ unlicense /* or */ mit ];
|
2019-12-26 15:13:48 +01:00
|
|
|
maintainers = with maintainers; [ tailhook globin ma27 ];
|
2016-09-23 22:39:58 +02:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|