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