{ buildNpmPackage, lib }: buildNpmPackage { pname = "gebos-frontend"; version = "0.0.0"; src = ./.; # Filled in once package-lock.json exists. npmDepsHash = lib.fakeHash; installPhase = '' runHook preInstall mkdir -p $out/share/frontend cp -r dist/* $out/share/frontend/ runHook postInstall ''; meta = { description = "Gebos static SPA"; }; }