Merge pull request #28559 from dywedir/ripgrep

ripgrep: 0.5.2 -> 0.6.0
This commit is contained in:
Gabriel Ebner 2017-08-25 09:15:38 +02:00 committed by GitHub
commit bff84ca752

View File

@ -4,16 +4,16 @@ with rustPlatform;
buildRustPackage rec {
name = "ripgrep-${version}";
version = "0.5.2";
version = "0.6.0";
src = fetchFromGitHub {
owner = "BurntSushi";
repo = "ripgrep";
rev = "${version}";
sha256 = "128sfczms14zgfbhgmf84jjlivd4q6i581rxirhz3kmpnnby18rz";
sha256 = "1cnvwxbznmsn1gand8hhy5zadax5p67lvm46fkj1a1s89f158w3a";
};
depsSha256 = "1kjmv4bn5sicx8g5gyzq2zhxmqsqlgckhcg4ypvnjmcyq1ifiv2m";
depsSha256 = "1kx9xazhj93xa3cnys39wwr84qqjqrlsbbi5ih71vxppskdpvd6m";
preFixup = ''
mkdir -p "$out/man/man1"
@ -23,7 +23,7 @@ buildRustPackage rec {
meta = with stdenv.lib; {
description = "A utility that combines the usability of The Silver Searcher with the raw speed of grep";
homepage = https://github.com/BurntSushi/ripgrep;
license = with licenses; [ unlicense ];
license = with licenses; [ unlicense /* or */ mit ];
maintainers = [ maintainers.tailhook ];
platforms = platforms.all;
};