Merge pull request #289633 from marsam/ugrep-mainProgram

This commit is contained in:
Sandro 2024-02-22 21:20:06 +01:00 committed by GitHub
commit 01e52927ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,6 +7,7 @@
, bzip3
, lz4
, pcre2
, testers
, xz
, zlib
, zstd
@ -35,6 +36,12 @@ stdenv.mkDerivation (finalAttrs: {
zstd
];
passthru.tests = {
version = testers.testVersion {
package = finalAttrs.finalPackage;
};
};
meta = with lib; {
description = "Ultra fast grep with interactive query UI";
homepage = "https://github.com/Genivia/ugrep";
@ -42,5 +49,6 @@ stdenv.mkDerivation (finalAttrs: {
maintainers = with maintainers; [ numkem mikaelfangel ];
license = licenses.bsd3;
platforms = platforms.all;
mainProgram = "ug";
};
})