mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
qgrep: init at 1.1
This commit is contained in:
parent
43f9d5ccaa
commit
de70c139ec
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 { } ;
|
||||
esteidfirefoxplugin = callPackage ../applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin { };
|
||||
|
||||
qgrep = callPackage ../tools/text/qgrep {};
|
||||
|
||||
qhull = callPackage ../development/libraries/qhull { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user