Merge pull request #267713 from MikaelFangel/update-ugrep

ugrep: 4.3.2 -> 4.3.3
This commit is contained in:
Mario Rodas 2023-11-19 07:44:59 -05:00 committed by GitHub
commit 9dcde59abd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,9 @@
, stdenv
, fetchFromGitHub
, boost
, brotli
, bzip2
, bzip3
, lz4
, pcre2
, xz
@ -12,18 +14,20 @@
stdenv.mkDerivation (finalAttrs: {
pname = "ugrep";
version = "4.3.2";
version = "4.3.3";
src = fetchFromGitHub {
owner = "Genivia";
repo = "ugrep";
rev = "v${finalAttrs.version}";
hash = "sha256-0yg68lBEHiyRD3FE5oe67hMhhEHOFf7/PMA+88J9LuI=";
hash = "sha256-GYqIunSApnBfct+olre0eGy8KuOtbaiPvW0tQIcBRLQ=";
};
buildInputs = [
boost
brotli
bzip2
bzip3
lz4
pcre2
xz
@ -35,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: {
description = "Ultra fast grep with interactive query UI";
homepage = "https://github.com/Genivia/ugrep";
changelog = "https://github.com/Genivia/ugrep/releases/tag/v${finalAttrs.version}";
maintainers = with maintainers; [ numkem ];
maintainers = with maintainers; [ numkem mikaelfangel ];
license = licenses.bsd3;
platforms = platforms.all;
};