interactive intro to open social at-me.zzstoatzz.io
25
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: patch wisp-cli dynamic linker for nixery CI

Same approach as zat — add glibc and patchelf deps, then patch the
ELF interpreter to the nix store path.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz 230e55e9 ad51ef59

+7
+7
.tangled/workflows/ci.yaml
··· 8 8 nixpkgs: 9 9 - bun 10 10 - curl 11 + - glibc 12 + - patchelf 11 13 12 14 environment: 13 15 WISP_DID: "did:plc:xbtmt2zjwlrfegqvch7fboei" ··· 22 24 23 25 - name: deploy to wisp 24 26 command: | 27 + test -n "$WISP_APP_PASSWORD" 25 28 curl -sSL https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 26 29 chmod +x wisp-cli 30 + INTERP=$(find /nix/store -name 'ld-linux-x86-64.so.2' -print -quit 2>/dev/null) 31 + if [ -n "$INTERP" ]; then 32 + patchelf --set-interpreter "$INTERP" --set-rpath "$(dirname "$INTERP")" wisp-cli 33 + fi 27 34 ./wisp-cli deploy "$WISP_DID" --path ./dist --site "$WISP_SITE_NAME" --password "$WISP_APP_PASSWORD"