nixpkgs/pkgs/tools/text/ripgrep/default.nix

57 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, rustPlatform
, asciidoctor
, installShellFiles
, pkg-config
2018-09-08 14:21:25 +02:00
, Security
, withPCRE2 ? true
2021-05-03 16:59:17 +02:00
, pcre2
2018-09-08 14:21:25 +02:00
}:
2016-09-23 22:39:58 +02:00
rustPlatform.buildRustPackage rec {
2019-04-16 22:27:05 +02:00
pname = "ripgrep";
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;
sha256 = "1hqps7l5qrjh9f914r5i6kmcz6f1yb951nv4lby0cjnp5l253kps";
2016-09-23 22:39:58 +02:00
};
cargoSha256 = "1nyfxma2vwfq6r614ng8qq8vanb540a5z0ibs85wz5sjm3hp1l4f";
2018-09-08 14:21:25 +02:00
2021-01-15 10:19:50 +01:00
cargoBuildFlags = lib.optional withPCRE2 "--features pcre2";
nativeBuildInputs = [ asciidoctor installShellFiles ]
++ lib.optional withPCRE2 pkg-config;
2021-05-03 16:59:17 +02:00
buildInputs = lib.optional withPCRE2 pcre2
++ lib.optional stdenv.isDarwin Security;
2016-09-23 22:39:58 +02: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}
installShellCompletion --zsh complete/_rg
'';
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 15:33:59 +01:00
'' + lib.optionalString withPCRE2 ''
echo '(a(aa)aa)' | $out/bin/rg -P '\((a*|(?R))*\)'
'';
meta = with 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";
homepage = "https://github.com/BurntSushi/ripgrep";
2017-08-25 00:25:02 +02:00
license = with licenses; [ unlicense /* or */ mit ];
2020-06-08 05:24:36 +02:00
maintainers = with maintainers; [ tailhook globin ma27 zowoq ];
2021-04-27 18:46:23 +02:00
mainProgram = "rg";
2016-09-23 22:39:58 +02:00
};
}