albyhub default.nix hash update

This commit is contained in:
2026-08-27 01:13:48 -05:00
parent 1de1bf95ad
commit cb4585ecf8
+11
View File
@@ -63,5 +63,16 @@ buildGoModule rec {
mv $out/bin/http $out/bin/albyhub mv $out/bin/http $out/bin/albyhub
''; '';
preFixup = ''
# Go's external linker bakes the sandbox build dir into the RPATH;
# rewrite it to the real store paths before the fixup audit
patchelf --set-rpath ${
lib.makeLibraryPath [
(lib.getLib stdenv.cc.cc)
(lib.getLib stdenv.cc.libc)
]
} $out/bin/albyhub
'';
meta.mainProgram = "albyhub"; meta.mainProgram = "albyhub";
} }