commit
a2e219ec87
27
pkgs/tools/text/qgrep/default.nix
Normal file
27
pkgs/tools/text/qgrep/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -5298,6 +5298,7 @@ in
|
|||||||
qdigidoc = libsForQt5.callPackage ../tools/security/qdigidoc { } ;
|
qdigidoc = libsForQt5.callPackage ../tools/security/qdigidoc { } ;
|
||||||
esteidfirefoxplugin = callPackage ../applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin { };
|
esteidfirefoxplugin = callPackage ../applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin { };
|
||||||
|
|
||||||
|
qgrep = callPackage ../tools/text/qgrep {};
|
||||||
|
|
||||||
qhull = callPackage ../development/libraries/qhull { };
|
qhull = callPackage ../development/libraries/qhull { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user