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-02-21 21:36:36 +03:00
version = "0.8.1";
2016-09-23 23:39:58 +03:00
src = fetchFromGitHub {
owner = "BurntSushi";
repo = "ripgrep";
rev = "${version}";
2018-02-21 21:36:36 +03:00
sha256 = "1h7k9ik723qzplwl0a5i0anzdr115wwklfgp0n11p4k2ckh7nygn";
2016-09-23 23:39:58 +03:00
};
2018-02-21 21:36:36 +03:00
cargoSha256 = "1gld93dxfm4vyiz1b43smbdhxmyzdk2236ksp8vw1zb1yyzn83nf";
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;
};
}