commit
fa767ab751
@ -1,40 +1,44 @@
|
|||||||
{ stdenv, fetchFromGitHub, rustPlatform, asciidoc, docbook_xsl, libxslt
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, asciidoc
|
||||||
|
, docbook_xsl
|
||||||
|
, libxslt
|
||||||
|
, installShellFiles
|
||||||
, Security
|
, Security
|
||||||
, withPCRE2 ? true, pcre2 ? null
|
, withPCRE2 ? true
|
||||||
|
, pcre2 ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "ripgrep";
|
pname = "ripgrep";
|
||||||
version = "11.0.2";
|
version = "12.0.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "BurntSushi";
|
owner = "BurntSushi";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1iga3320mgi7m853la55xip514a3chqsdi1a1rwv25lr9b1p7vd3";
|
sha256 = "0n4169l662fvg6r4rcfs8n8f92rxndlaqb7k4x63680mra470dbi";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "0lwz661rbm7kwkd6mallxym1pz8ynda5f03ynjfd16vrazy2dj21";
|
cargoSha256 = "01zi9zqdjsgc3im9na511n6w2bmqvm46wryh10fhzc9fnkziqmq3";
|
||||||
|
|
||||||
cargoBuildFlags = stdenv.lib.optional withPCRE2 "--features pcre2";
|
cargoBuildFlags = stdenv.lib.optional withPCRE2 "--features pcre2";
|
||||||
|
|
||||||
nativeBuildInputs = [ asciidoc docbook_xsl libxslt ];
|
nativeBuildInputs = [ asciidoc docbook_xsl libxslt installShellFiles ];
|
||||||
buildInputs = (stdenv.lib.optional withPCRE2 pcre2)
|
buildInputs = (stdenv.lib.optional withPCRE2 pcre2)
|
||||||
++ (stdenv.lib.optional stdenv.isDarwin Security);
|
++ (stdenv.lib.optional stdenv.isDarwin Security);
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
mkdir -p "$out/man/man1"
|
(cd target/release/build/ripgrep-*/out
|
||||||
cp target/release/build/ripgrep-*/out/rg.1 "$out/man/man1/"
|
installManPage rg.1
|
||||||
|
installShellCompletion rg.{bash,fish})
|
||||||
mkdir -p "$out/share/"{bash-completion/completions,fish/vendor_completions.d,zsh/site-functions}
|
installShellCompletion --zsh "$src/complete/_rg"
|
||||||
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/"
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A utility that combines the usability of The Silver Searcher with the raw speed of grep";
|
description = "A utility that combines the usability of The Silver Searcher with the raw speed of grep";
|
||||||
homepage = https://github.com/BurntSushi/ripgrep;
|
homepage = "https://github.com/BurntSushi/ripgrep";
|
||||||
license = with licenses; [ unlicense /* or */ mit ];
|
license = with licenses; [ unlicense /* or */ mit ];
|
||||||
maintainers = with maintainers; [ tailhook globin ma27 ];
|
maintainers = with maintainers; [ tailhook globin ma27 ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
Loading…
Reference in New Issue
Block a user