2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv
|
2020-03-15 19:07:49 -07:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
2020-05-09 14:20:00 -07:00
|
|
|
, asciidoctor
|
2020-03-15 19:07:49 -07:00
|
|
|
, installShellFiles
|
2021-02-14 23:18:29 -08:00
|
|
|
, pkg-config
|
2018-09-08 05:21:25 -07:00
|
|
|
, Security
|
2020-03-15 19:07:49 -07:00
|
|
|
, withPCRE2 ? true
|
|
|
|
, pcre2 ? null
|
2018-09-08 05:21:25 -07:00
|
|
|
}:
|
2016-09-23 13:39:58 -07:00
|
|
|
|
2018-02-12 03:34:07 -08:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-04-16 13:27:05 -07:00
|
|
|
pname = "ripgrep";
|
2020-05-29 06:51:21 -07:00
|
|
|
version = "12.1.1";
|
2016-09-23 13:39:58 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "BurntSushi";
|
2019-04-16 13:27:05 -07:00
|
|
|
repo = pname;
|
2018-08-04 13:59:33 -07:00
|
|
|
rev = version;
|
2020-05-29 06:51:21 -07:00
|
|
|
sha256 = "1hqps7l5qrjh9f914r5i6kmcz6f1yb951nv4lby0cjnp5l253kps";
|
2016-09-23 13:39:58 -07:00
|
|
|
};
|
|
|
|
|
2020-05-29 06:51:21 -07:00
|
|
|
cargoSha256 = "03wf9r2csi6jpa7v5sw5lpxkrk4wfzwmzx7k3991q3bdjzcwnnwp";
|
2018-09-08 05:21:25 -07:00
|
|
|
|
2021-01-15 01:19:50 -08:00
|
|
|
cargoBuildFlags = lib.optional withPCRE2 "--features pcre2";
|
2018-02-12 03:34:07 -08:00
|
|
|
|
2021-02-14 23:18:29 -08:00
|
|
|
nativeBuildInputs = [ asciidoctor installShellFiles ]
|
|
|
|
++ lib.optional withPCRE2 pkg-config;
|
2021-01-15 01:19:50 -08:00
|
|
|
buildInputs = (lib.optional withPCRE2 pcre2)
|
2021-02-14 23:18:29 -08:00
|
|
|
++ (lib.optional stdenv.isDarwin Security);
|
2016-09-23 13:39:58 -07:00
|
|
|
|
2017-03-09 23:12:16 -08:00
|
|
|
preFixup = ''
|
2020-03-19 23:47:20 -07:00
|
|
|
installManPage $releaseDir/build/ripgrep-*/out/rg.1
|
|
|
|
|
|
|
|
installShellCompletion $releaseDir/build/ripgrep-*/out/rg.{bash,fish}
|
2020-09-21 19:26:12 -07:00
|
|
|
installShellCompletion --zsh complete/_rg
|
2017-03-09 23:12:16 -08:00
|
|
|
'';
|
|
|
|
|
2021-02-18 12:08:03 -08:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
file="$(mktemp)"
|
|
|
|
echo "abc\nbcd\ncde" > "$file"
|
|
|
|
$out/bin/rg -N 'bcd' "$file"
|
|
|
|
$out/bin/rg -N 'cd' "$file"
|
2021-02-19 06:33:59 -08:00
|
|
|
'' + lib.optionalString withPCRE2 ''
|
|
|
|
echo '(a(aa)aa)' | $out/bin/rg -P '\((a*|(?R))*\)'
|
2021-02-18 12:08:03 -08:00
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2016-12-15 15:41:22 -08:00
|
|
|
description = "A utility that combines the usability of The Silver Searcher with the raw speed of grep";
|
2020-03-15 19:07:49 -07:00
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep";
|
2017-08-24 15:25:02 -07:00
|
|
|
license = with licenses; [ unlicense /* or */ mit ];
|
2020-06-07 20:24:36 -07:00
|
|
|
maintainers = with maintainers; [ tailhook globin ma27 zowoq ];
|
2016-09-23 13:39:58 -07:00
|
|
|
};
|
|
|
|
}
|