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

43 lines
1.4 KiB
Nix
Raw Normal View History

2018-09-08 13:21:25 +01:00
{ stdenv, fetchFromGitHub, rustPlatform, asciidoc, docbook_xsl, libxslt
, Security
, withPCRE2 ? false, pcre2 ? null
}:
2016-09-23 21:39:58 +01:00
rustPlatform.buildRustPackage rec {
2019-04-16 21:27:05 +01:00
pname = "ripgrep";
version = "11.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;
2019-04-16 21:27:05 +01:00
sha256 = "0vak82d4vyw0w8agswbyxa6g3zs2h9mxm2xjw0xs9qccvmi7whbb";
2016-09-23 21:39:58 +01:00
};
cargoSha256 = "1k1wg27p7w8b3cgygnkr6yhsc4hpnvrpa227s612vy2zfcmgb1kx";
2018-09-08 13:21:25 +01:00
cargoBuildFlags = stdenv.lib.optional withPCRE2 "--features pcre2";
nativeBuildInputs = [ asciidoc docbook_xsl libxslt ];
2018-09-08 13:21:25 +01:00
buildInputs = (stdenv.lib.optional withPCRE2 pcre2)
++ (stdenv.lib.optional stdenv.isDarwin Security);
2016-09-23 21:39:58 +01:00
preFixup = ''
mkdir -p "$out/man/man1"
cp target/release/build/ripgrep-*/out/rg.1 "$out/man/man1/"
mkdir -p "$out/share/"{bash-completion/completions,fish/vendor_completions.d,zsh/site-functions}
cp target/release/build/ripgrep-*/out/rg.bash "$out/share/bash-completion/completions/"
cp target/release/build/ripgrep-*/out/rg.fish "$out/share/fish/vendor_completions.d/"
cp "$src/complete/_rg" "$out/share/zsh/site-functions/"
'';
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";
2016-09-23 21:39:58 +01:00
homepage = https://github.com/BurntSushi/ripgrep;
2017-08-24 23:25:02 +01:00
license = with licenses; [ unlicense /* or */ mit ];
2016-09-23 21:39:58 +01:00
maintainers = [ maintainers.tailhook ];
platforms = platforms.all;
};
}