qgrep: init at 1.1

This commit is contained in:
Yurii Rashkovskii 2019-04-28 14:36:32 +07:00
parent 43f9d5ccaa
commit de70c139ec
No known key found for this signature in database
GPG Key ID: 1D60D7CFD80845FF
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "1.1";
pname = "qgrep";
src = fetchFromGitHub {
owner = "zeux";
repo = "qgrep";
rev = "v${version}";
sha256 = "046ccw34vz2k5jn6gyxign5gs2qi7i50jy9b74wqv7sjf5zayrh0";
fetchSubmodules = true;
};
installPhase = ''
install -Dm755 qgrep $out/bin/qgrep
'';
meta = with stdenv.lib; {
description = "Fast regular expression grep for source code with incremental index updates";
homepage = https://github.com/zeux/qgrep;
license = licenses.mit;
maintainers = [ maintainers.yrashk ];
platforms = platforms.all;
};
}

View File

@ -5298,6 +5298,7 @@ in
qdigidoc = libsForQt5.callPackage ../tools/security/qdigidoc { } ;
esteidfirefoxplugin = callPackage ../applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin { };
qgrep = callPackage ../tools/text/qgrep {};
qhull = callPackage ../development/libraries/qhull { };