tcat: Add updateScript, convert to finalAttrs, drop with lib.maintainers (#486617)

This commit is contained in:
Marcin Serwin
2026-02-22 13:38:27 +00:00
committed by GitHub
+6 -1
View File
@@ -2,6 +2,7 @@
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
}:
buildGoModule (finalAttrs: {
@@ -16,10 +17,14 @@ buildGoModule (finalAttrs: {
vendorHash = null;
subPackages = ".";
passthru.updateScript = nix-update-script { };
meta = {
description = "Table cat";
homepage = "https://github.com/rsc/tcat";
maintainers = with lib.maintainers; [ mmlb ];
maintainers = [
lib.maintainers.mmlb
];
license = lib.licenses.bsd3;
mainProgram = "tcat";
};