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 2

dusk e82805d2 62e5621e

+10 -2
+10 -2
flake.nix
··· 35 35 36 36 src = ./.; 37 37 38 - outputHash = "sha256-9SWKDZ1IlsHrcZy1eqYk9cTFTugoIhpF/biJ5cgHcyY="; 38 + outputHash = "sha256-Rk67wKAXOngKPagpAx8Zlqx7ogBBeQb4srMaJYsVobc="; 39 39 outputHashAlgo = "sha256"; 40 40 outputHashMode = "recursive"; 41 41 ··· 46 46 # ++ [ "GIT_PROXY_COMMAND" "SOCKS_SERVER" ]; 47 47 48 48 buildPhase = "bun install --no-cache --no-progress --frozen-lockfile"; 49 - installPhase = "mv node_modules $out"; 49 + installPhase = '' 50 + mkdir -p $out/node_modules 51 + 52 + # Do not copy .cache or .bin 53 + cp -R ./node_modules/* $out/node_modules 54 + ls -la $out/node_modules 55 + ''; 56 + dontFixup = true; 57 + dontPatchShebangs = true; 50 58 }; 51 59 packages.gazesys = pkgs.stdenv.mkDerivation { 52 60 pname = packageJson.name;