From 5f51cc3d7b674be13cb658aa4c37481277896399 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sun, 5 Apr 2026 15:14:27 +0300 Subject: [PATCH] nix: fix vendor hash; add maintainers to meta Signed-off-by: NotAShelf Change-Id: I80482b51df52d7f992542bf2e6c24fe56a6a6964 --- nix/package.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nix/package.nix b/nix/package.nix index 0e07d75..70d02ab 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -20,7 +20,11 @@ buildGoModule (finalAttrs: { ]; }; - vendorHash = "sha256-vhCOK0cD92F9xMBS4APH+0nvLftaPuRl2LJio4mYWhY="; - + vendorHash = "sha256-9OkQIj2g5mZ+IpjIKvy8Il7J4xL4PJimEsXJP10FhmU="; ldflags = ["-s" "-w" "-X main.version=${finalAttrs.version}"]; + + meta = { + mainProgram = "ncro"; + maintainers = with lib.maintainers; [NotAShelf]; + }; })