WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto

chore: another attempt to fix up the nix build

+20 -2
+20 -2
nix/package.nix
··· 27 27 }; 28 28 29 29 pnpmDeps = fetchPnpmDeps { 30 - inherit (finalAttrs) pname version src; 30 + inherit (finalAttrs) pname version; 31 + # Only lockfile + manifests — pnpm doesn't need TypeScript source to fetch deps. 32 + # Using the full src would force a rebuild on every code change. 33 + src = lib.fileset.toSource { 34 + root = ../.; 35 + fileset = lib.fileset.unions [ 36 + ../package.json 37 + ../pnpm-lock.yaml 38 + ../pnpm-workspace.yaml 39 + ../apps/appview/package.json 40 + ../apps/web/package.json 41 + ../packages/atproto/package.json 42 + ../packages/cli/package.json 43 + ../packages/css-sanitizer/package.json 44 + ../packages/db/package.json 45 + ../packages/lexicon/package.json 46 + ../packages/logger/package.json 47 + ]; 48 + }; 31 49 pnpm = pnpm_9; 32 50 fetcherVersion = 3; 33 - hash = "sha256-bL1cpMvDogD/pdVxGA8CAMEXazWpFDBiGBxG83SmXLA="; 51 + hash = ""; 34 52 }; 35 53 36 54 nativeBuildInputs = [