From a7bfc9aa0de42590e37f326b9518307102a61f84 Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Thu, 27 Aug 2026 00:58:17 -0500 Subject: [PATCH] albyhub default.nix fix --- packages/albyhub/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/albyhub/default.nix b/packages/albyhub/default.nix index 2c1dd93..a828fae 100644 --- a/packages/albyhub/default.nix +++ b/packages/albyhub/default.nix @@ -15,13 +15,13 @@ buildGoModule rec { repo = "hub"; tag = "sovran-1.24.0"; # round 1: copy the "got: sha256-..." from the build error - hash = "sha256-PLACEHOLDER-SRC"; + hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; }; # `go mod vendor` strips the secp256k1-zkp cgo headers (include/), so use # the full module cache. Round 2: copy the "got: sha256-..." from the error proxyVendor = true; - vendorHash = "sha256-PLACEHOLDER-VENDOR"; + vendorHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; subPackages = [ "cmd/http" ]; @@ -62,4 +62,6 @@ buildGoModule rec { postInstall = '' mv $out/bin/http $out/bin/albyhub ''; + + meta.mainProgram = "albyhub"; }