nix: fix vendor hash; add maintainers to meta

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I80482b51df52d7f992542bf2e6c24fe56a6a6964
This commit is contained in:
raf 2026-04-05 15:14:27 +03:00
commit 5f51cc3d7b
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -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];
};
})