This repository has no description
0

Configure Feed

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

flake,appview: keep devshell asset copies out of the working copy

Signed-off-by: dawn <dawn@tangled.org>

author
dawn
date (Jul 30, 2026, 7:45 PM +0300) commit 7e3d0c94 parent 11838be0 change-id lostkkzq
+14 -8
+3
appview/pages/static/.gitignore
··· 1 + * 2 + !.gitignore 3 + !topbar-search.js
+11 -8
flake.nix
··· 415 415 shellHook = '' 416 416 export CC=${pkgs.stdenv.cc}/bin/cc 417 417 export NODE_PATH=${tailwindcss-plugins}''${NODE_PATH:+:$NODE_PATH} 418 - mkdir -p appview/pages/static 419 - # temporary self-heal for workspaces that copied static assets as read-only 420 - [ -d appview/pages/static/icons ] && [ ! -w appview/pages/static/icons ] && chmod -R u+rwX appview/pages/static 421 - # no preserve is needed because watch-tailwind will want to be able to overwrite 422 - cp -fr --no-preserve=ownership,mode ${packages'.appview-static-files}/* appview/pages/static 423 - mkdir -p web/static 424 - rm -rf web/static/fonts web/static/logos 425 - cp -fr --no-preserve=ownership,mode ${packages'.web-static-files}/* web/static 418 + ( 419 + cd "$(git rev-parse --show-toplevel 2>/dev/null || pwd)" 420 + mkdir -p appview/pages/static 421 + # temporary self-heal for workspaces that copied static assets as read-only 422 + [ -d appview/pages/static/icons ] && [ ! -w appview/pages/static/icons ] && chmod -R u+rwX appview/pages/static 423 + # no preserve is needed because watch-tailwind will want to be able to overwrite 424 + cp -fr --no-preserve=ownership,mode ${packages'.appview-static-files}/* appview/pages/static 425 + mkdir -p web/static 426 + rm -rf web/static/fonts web/static/logos 427 + cp -fr --no-preserve=ownership,mode ${packages'.web-static-files}/* web/static 428 + ) 426 429 export TANGLED_OAUTH_CLIENT_KID="$(date +%s)" 427 430 export TANGLED_OAUTH_CLIENT_SECRET="$(${packages'.goat}/bin/goat key generate -t P-256 | grep -A1 "Secret Key" | tail -n1 | awk '{print $1}')" 428 431 # Make xcrun (Nix stub) able to find ld from the system Command Line Tools.