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 9 src = ../client; 10 11 - outputHash = "sha256-t8PJFo+3XGkzmMNbw9Rf9cS5Ob5YtI8ucX3ay+u9a3M="; 12 outputHashAlgo = "sha256"; 13 outputHashMode = "recursive"; 14
··· 8 9 src = ../client; 10 11 + outputHash = "sha256-njwXk3u0NUsYWLv9EOdCltgQOjTVkcfu+D+0COSw/6I="; 12 outputHashAlgo = "sha256"; 13 outputHashMode = "recursive"; 14
+10 -2
nix/client.nix
··· 1 { 2 stdenv, 3 makeBinaryWrapper, 4 bun, ··· 28 ''; 29 buildPhase = '' 30 runHook preBuild 31 - bun --prefer-offline run --bun build 32 runHook postBuild 33 ''; 34 installPhase = '' 35 runHook preInstall 36 - mkdir -p $out 37 cp -R ./build/* $out 38 runHook postInstall 39 ''; 40 }
··· 1 { 2 + lib, 3 stdenv, 4 makeBinaryWrapper, 5 bun, ··· 29 ''; 30 buildPhase = '' 31 runHook preBuild 32 + bun --prefer-offline run build 33 runHook postBuild 34 ''; 35 installPhase = '' 36 runHook preInstall 37 + 38 + mkdir -p $out/bin 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 + 46 runHook postInstall 47 ''; 48 }