From 8f84612000162cb81025ceae990d3d7697e428b1 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sat, 11 Apr 2026 15:17:26 +0200 Subject: [PATCH] zat: init at 0.5.3 --- pkgs/by-name/za/zat/package.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pkgs/by-name/za/zat/package.nix diff --git a/pkgs/by-name/za/zat/package.nix b/pkgs/by-name/za/zat/package.nix new file mode 100644 index 000000000000..3ba06969cc60 --- /dev/null +++ b/pkgs/by-name/za/zat/package.nix @@ -0,0 +1,30 @@ +{ + lib, + rustPlatform, + fetchFromGitHub, +}: + +rustPlatform.buildRustPackage (finalAttrs: { + pname = "zat"; + version = "0.5.3"; + + src = fetchFromGitHub { + owner = "bglgwyng"; + repo = "zat"; + tag = "v${finalAttrs.version}"; + hash = "sha256-B/DT8hdtOds9d/od5QInuRu5rBprxzJOfbuj3LkGCvk="; + }; + + __structuredAttrs = true; + + cargoHash = "sha256-VSu68KPkoOLyva+A3+TtdTg48xZg0LNenMq+z9xoAVU="; + + meta = { + description = "Cat files and directories with code outline for LLM coding agents"; + homepage = "https://github.com/bglgwyng/zat"; + changelog = "https://github.com/bglgwyng/zat/releases/tag/v${finalAttrs.version}"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ zimbatm ]; + mainProgram = "zat"; + }; +})