data endpoint for entity 90008 (aka. a website)
0
fork

Configure Feed

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

build(nix): determinism pass 3

dusk 234b4b62 e82805d2

+7 -5
+7 -5
flake.nix
··· 35 35 36 36 src = ./.; 37 37 38 - outputHash = "sha256-Rk67wKAXOngKPagpAx8Zlqx7ogBBeQb4srMaJYsVobc="; 38 + outputHash = "sha256-auuXpZugP+PxHhrj2FpwHCwG1YkQe/FDro2Ej92AONo="; 39 39 outputHashAlgo = "sha256"; 40 40 outputHashMode = "recursive"; 41 41 ··· 47 47 48 48 buildPhase = "bun install --no-cache --no-progress --frozen-lockfile"; 49 49 installPhase = '' 50 - mkdir -p $out/node_modules 50 + mkdir -p $out 51 51 52 52 # Do not copy .cache or .bin 53 - cp -R ./node_modules/* $out/node_modules 54 - ls -la $out/node_modules 53 + cp -R ./node_modules/* $out 54 + cp -R ./node_modules/.bin $out 55 + ls -la $out 55 56 ''; 56 57 dontFixup = true; 57 58 dontPatchShebangs = true; ··· 68 69 PUBLIC_BASE_URL="http://localhost:5173"; 69 70 GUESTBOOK_BASE_URL="http://localhost:8080"; 70 71 72 + # dontConfigure = true; 71 73 configurePhase = '' 72 74 runHook preConfigure 73 75 cp -R --no-preserve=ownership ${config.packages.gazesys-modules} node_modules ··· 85 87 runHook preInstall 86 88 87 89 mkdir -p $out/bin 88 - ln -s ${config.packages.gazesys-modules} $out 90 + cp -R --no-preserve=ownership node_modules $out 89 91 cp -R ./build/* $out 90 92 91 93 makeBinaryWrapper ${pkgs.bun}/bin/bun $out/bin/${packageJson.name} \