27f8ac106d
* ugrep: 3.6.0 -> 3.7.0 (#157094) * ugrep: 3.7.0 -> 3.7.1 Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
39 lines
638 B
Nix
39 lines
638 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, boost
|
|
, bzip2
|
|
, lz4
|
|
, pcre2
|
|
, xz
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ugrep";
|
|
version = "3.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Genivia";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-5ZlZ/nCUOiyOWagF1Vla945d7zKbMsHp56ZE4HwdEP4=";
|
|
};
|
|
|
|
buildInputs = [
|
|
boost
|
|
bzip2
|
|
lz4
|
|
pcre2
|
|
xz
|
|
zlib
|
|
];
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|