mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
c1373dd3ab
Signed-off-by: Litchi Pi <litchi.pi@proton.me>
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
src: version:
|
|
{ lib, fetchYarnDeps, nodejs_18, prefetch-yarn-deps, stdenv }: stdenv.mkDerivation {
|
|
name = "mealie-frontend";
|
|
inherit version;
|
|
src = "${src}/frontend";
|
|
|
|
yarnOfflineCache = fetchYarnDeps {
|
|
yarnLock = "${src}/frontend/yarn.lock";
|
|
hash = "sha256-zQUD/PQWzp2Q6fiVmLicvSusXffu6s9q3x/aAUnCN38=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
prefetch-yarn-deps
|
|
nodejs_18
|
|
nodejs_18.pkgs.yarn
|
|
];
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
|
|
export HOME=$(mktemp -d)
|
|
yarn config --offline set yarn-offline-mirror "$yarnOfflineCache"
|
|
fixup-yarn-lock yarn.lock
|
|
yarn install --frozen-lockfile --offline --no-progress --non-interactive
|
|
patchShebangs node_modules/
|
|
|
|
runHook postConfigure
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
export NUXT_TELEMETRY_DISABLED=1
|
|
yarn --offline build
|
|
yarn --offline generate
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mv dist $out
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Frontend for Mealie";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ litchipi ];
|
|
};
|
|
}
|