ugrep: init at 2.4.1 (#93296)

This commit is contained in:
Sebastien Bariteau 2020-07-24 21:16:21 -04:00 committed by GitHub
parent 703cbe11af
commit 9ab83c6eed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View 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;
};
}

View file

@ -7343,6 +7343,8 @@ in
uget = callPackage ../tools/networking/uget { };
uget-integrator = callPackage ../tools/networking/uget-integrator { };
ugrep = callPackage ../tools/text/ugrep { };
uif2iso = callPackage ../tools/cd-dvd/uif2iso { };