tracks lexicons and how many times they appeared on the jetstream

build(nix): update modules hash

ptr.pet c0968d55 fc2b671d

verified
Changed files
+11 -3
nix
+1 -1
nix/client-modules.nix
··· 8 8 9 9 src = ../client; 10 10 11 - outputHash = "sha256-t8PJFo+3XGkzmMNbw9Rf9cS5Ob5YtI8ucX3ay+u9a3M="; 11 + outputHash = "sha256-njwXk3u0NUsYWLv9EOdCltgQOjTVkcfu+D+0COSw/6I="; 12 12 outputHashAlgo = "sha256"; 13 13 outputHashMode = "recursive"; 14 14
+10 -2
nix/client.nix
··· 1 1 { 2 + lib, 2 3 stdenv, 3 4 makeBinaryWrapper, 4 5 bun, ··· 28 29 ''; 29 30 buildPhase = '' 30 31 runHook preBuild 31 - bun --prefer-offline run --bun build 32 + bun --prefer-offline run build 32 33 runHook postBuild 33 34 ''; 34 35 installPhase = '' 35 36 runHook preInstall 36 - mkdir -p $out 37 + 38 + mkdir -p $out/bin 37 39 cp -R ./build/* $out 40 + cp -R ./node_modules $out 41 + 42 + makeBinaryWrapper ${bun}/bin/bun $out/bin/website \ 43 + --prefix PATH : ${lib.makeBinPath [ bun ]} \ 44 + --add-flags "run --bun --no-install --cwd $out start" 45 + 38 46 runHook postInstall 39 47 ''; 40 48 }