ugrep: init at 2.4.1 (#93296)
This commit is contained in:
parent
703cbe11af
commit
9ab83c6eed
23
pkgs/tools/text/ugrep/default.nix
Normal file
23
pkgs/tools/text/ugrep/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, boost, bzip2, lz4, pcre2, xz, zlib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "ugrep";
|
||||||
|
version = "2.4.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Genivia";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "16nr7zq4l2si9pfckfinbqnv94hw51z2qcbygc9x81jbjlvg3003";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ boost bzip2 lz4 pcre2 xz zlib ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Ultra fast grep with interactive query UI";
|
||||||
|
homepage = "https://github.com/Genivia/ugrep";
|
||||||
|
maintainers = with maintainers; [ numkem ];
|
||||||
|
license = licenses.bsd3;
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -7343,6 +7343,8 @@ in
|
|||||||
uget = callPackage ../tools/networking/uget { };
|
uget = callPackage ../tools/networking/uget { };
|
||||||
|
|
||||||
uget-integrator = callPackage ../tools/networking/uget-integrator { };
|
uget-integrator = callPackage ../tools/networking/uget-integrator { };
|
||||||
|
|
||||||
|
ugrep = callPackage ../tools/text/ugrep { };
|
||||||
|
|
||||||
uif2iso = callPackage ../tools/cd-dvd/uif2iso { };
|
uif2iso = callPackage ../tools/cd-dvd/uif2iso { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user