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

45 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, rustPlatform
, asciidoctor
, installShellFiles
2018-09-08 05:21:25 -07:00
, Security
, withPCRE2 ? true
, pcre2 ? null
2018-09-08 05:21:25 -07:00
}:
2016-09-23 13:39:58 -07:00
rustPlatform.buildRustPackage rec {
2019-04-16 13:27:05 -07:00
pname = "ripgrep";
version = "12.1.0";
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;
sha256 = "1vgkk78c25ia9y4q5psrh7xrlbfdn7dz7bc20kci40n8zr0vjwww";
2016-09-23 13:39:58 -07:00
};
cargoSha256 = "143lnf4yah9ik7v8rphv7gbvr2ckhjpmy8zfgqml1n3fqxiqvxnb";
2018-09-08 05:21:25 -07:00
cargoBuildFlags = stdenv.lib.optional withPCRE2 "--features pcre2";
nativeBuildInputs = [ asciidoctor installShellFiles ];
2018-09-08 05:21:25 -07:00
buildInputs = (stdenv.lib.optional withPCRE2 pcre2)
++ (stdenv.lib.optional stdenv.isDarwin Security);
2016-09-23 13:39:58 -07: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}
installShellCompletion --zsh "$src/complete/_rg"
'';
2016-09-23 13:39:58 -07:00
meta = with stdenv.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";
homepage = "https://github.com/BurntSushi/ripgrep";
2017-08-24 15:25:02 -07:00
license = with licenses; [ unlicense /* or */ mit ];
maintainers = with maintainers; [ tailhook globin ma27 ];
2016-09-23 13:39:58 -07:00
platforms = platforms.all;
};
}