26 lines
717 B
Nix
26 lines
717 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper }:
|
|
|
|
with rustPlatform;
|
|
|
|
buildRustPackage rec {
|
|
name = "ripgrep-${version}";
|
|
version = "0.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BurntSushi";
|
|
repo = "ripgrep";
|
|
rev = "${version}";
|
|
sha256 = "15j68bkkxpbh9c05f8l7j0y33da01y28kpg781lc0234h45535f3";
|
|
};
|
|
|
|
depsSha256 = "142h6pcf2mr4i7dg7di4299c18aqn0yvk9nr1mxnkb7wjcmrvcfg";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An untility that combines the usability of The Silver Searcher with the raw speed of grep";
|
|
homepage = https://github.com/BurntSushi/ripgrep;
|
|
license = with licenses; [ unlicense ];
|
|
maintainers = [ maintainers.tailhook ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|