Files
2026-06-26 16:12:57 +02:00

21 lines
376 B
Nix

{ buildNpmPackage }:
buildNpmPackage {
pname = "gebos-frontend";
version = "0.0.0";
src = ./.;
npmDepsHash = "sha256-GeXgNbf94QRLNaZP8ma2vx19Vzm8jDWPeOTvE9exwm0=";
installPhase = ''
runHook preInstall
mkdir -p $out/share/frontend
cp -r dist/* $out/share/frontend/
runHook postInstall
'';
meta = {
description = "Gebos static SPA";
};
}