Remove all Docker files, Vercel config, Verdaccio, and old CI workflow. Standardize on nodejs_22 across devShell and nix build helpers. Update CI to build all packages and push to Cachix on merge to develop. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
# Helper function to build Vite-based static apps
|
|
{ pkgs, src, npmDepsHash }:
|
|
|
|
{ name, buildScript, envVars ? {} }:
|
|
|
|
pkgs.buildNpmPackage {
|
|
pname = "imphnen-${name}";
|
|
version = "0.0.1";
|
|
inherit src npmDepsHash;
|
|
|
|
npmFlags = [ "--legacy-peer-deps" ];
|
|
makeCacheWritable = true;
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
nodejs_22
|
|
util-linux # For script command to create pseudo-terminal
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
export NX_DAEMON=false
|
|
export HOME=$TMPDIR
|
|
export CI=true
|
|
export NO_COLOR=1
|
|
export TERM=dumb
|
|
export NX_SKIP_NX_CACHE=true
|
|
export NX_TASKS_RUNNER_DYNAMIC_OUTPUT=false
|
|
export NX_NATIVE=false
|
|
${pkgs.lib.concatStringsSep "\n" (pkgs.lib.mapAttrsToList (k: v: "export ${k}=\"${v}\"") envVars)}
|
|
# Run nx build with pseudo-terminal to prevent terminal access errors
|
|
# Use script to create a pty, preventing Nx from crashing on raw terminal mode
|
|
script -q -c "./node_modules/.bin/nx build ${name} --output-style=static" /dev/null || true
|
|
# Verify the build output exists
|
|
test -d dist/apps/${name}
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out
|
|
cp -r dist/apps/${name}/* $out/
|
|
runHook postInstall
|
|
'';
|
|
|
|
dontNpmBuild = true;
|
|
}
|