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

36 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, rustPlatform, asciidoc, docbook_xsl, libxslt }:
2016-09-23 23:39:58 +03:00
rustPlatform.buildRustPackage rec {
2016-09-23 23:39:58 +03:00
name = "ripgrep-${version}";
2018-08-04 23:59:33 +03:00
version = "0.9.0";
2016-09-23 23:39:58 +03:00
src = fetchFromGitHub {
owner = "BurntSushi";
repo = "ripgrep";
2018-08-04 23:59:33 +03:00
rev = version;
sha256 = "089xffrqi4wm0w1lhy5iqxrcb82ca44bxl8qps4ilv0ih91vxwfj";
2016-09-23 23:39:58 +03:00
};
2018-08-04 23:59:33 +03:00
cargoSha256 = "1wsw7s1bc1gnpq4kjzkas5zf2snhpx9f6cyrrf6g5jr8l0hcbyih";
nativeBuildInputs = [ asciidoc docbook_xsl libxslt ];
2016-09-23 23:39:58 +03: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 23:39:58 +03:00
meta = with stdenv.lib; {
2016-12-16 02:41:22 +03:00
description = "A utility that combines the usability of The Silver Searcher with the raw speed of grep";
2016-09-23 23:39:58 +03:00
homepage = https://github.com/BurntSushi/ripgrep;
2017-08-25 01:25:02 +03:00
license = with licenses; [ unlicense /* or */ mit ];
2016-09-23 23:39:58 +03:00
maintainers = [ maintainers.tailhook ];
platforms = platforms.all;
};
}