2024-01-23 01:06:10 +01:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
fetchYarnDeps,
|
|
|
|
nodejs,
|
|
|
|
yarn,
|
|
|
|
fixup_yarn_lock,
|
|
|
|
google-fonts,
|
2024-01-23 17:09:35 +01:00
|
|
|
api_url ? "http://127.0.0.1:3000",
|
|
|
|
frontend_url ? "crab.fit",
|
2024-01-23 01:06:10 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation (
|
|
|
|
finalAttrs: {
|
|
|
|
pname = "crabfit-frontend";
|
|
|
|
version = "unstable-2023-08-02";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "GRA0007";
|
|
|
|
repo = "crab.fit";
|
|
|
|
rev = "628f9eefc300bf1ed3d6cc3323332c2ed9b8a350";
|
|
|
|
hash = "sha256-jy8BrJSHukRenPbZHw4nPx3cSi7E2GSg//WOXDh90mY=";
|
|
|
|
};
|
|
|
|
|
|
|
|
sourceRoot = "source/frontend";
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./01-privacy.patch
|
|
|
|
./02-karla.patch
|
|
|
|
./03-standalone.patch
|
2024-01-23 17:09:35 +01:00
|
|
|
./04-frontend_url.patch
|
2024-01-24 10:16:22 +01:00
|
|
|
./05-dgnum.patch
|
2024-02-08 16:37:09 +01:00
|
|
|
./06-download.patch
|
2024-02-08 16:48:30 +01:00
|
|
|
./07-colormap.patch
|
2024-01-23 01:06:10 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
offlineCache = fetchYarnDeps {
|
|
|
|
yarnLock = "${finalAttrs.src}/frontend/yarn.lock";
|
|
|
|
hash = "sha256-jkyQygwHdLlEZ1tlSQOh72nANp2F29rZbTXvKQStvGc=";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
nodejs
|
|
|
|
yarn
|
|
|
|
fixup_yarn_lock
|
|
|
|
];
|
|
|
|
|
2024-01-23 17:09:35 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace \
|
|
|
|
public/robots.txt \
|
|
|
|
public/sitemap.xml \
|
|
|
|
src/app/\[id\]/page.tsx \
|
|
|
|
src/app/layout.tsx \
|
|
|
|
src/components/CreateForm/components/EventInfo/EventInfo.tsx \
|
|
|
|
src/i18n/locales/de/help.json \
|
|
|
|
src/i18n/locales/en-GB/help.json \
|
|
|
|
src/i18n/locales/en/help.json \
|
|
|
|
src/i18n/locales/es/help.json \
|
|
|
|
src/i18n/locales/fr/help.json \
|
|
|
|
src/i18n/locales/hi/help.json \
|
|
|
|
src/i18n/locales/id/help.json \
|
|
|
|
src/i18n/locales/it/help.json \
|
|
|
|
src/i18n/locales/ko/help.json \
|
|
|
|
src/i18n/locales/pt-BR/help.json \
|
|
|
|
src/i18n/locales/pt-PT/help.json \
|
|
|
|
src/i18n/locales/ru/help.json \
|
|
|
|
--replace "@FRONTEND_URL@" "${frontend_url}"
|
|
|
|
'';
|
|
|
|
|
2024-01-23 01:06:10 +01:00
|
|
|
configurePhase = ''
|
|
|
|
runHook preConfigure
|
|
|
|
|
|
|
|
export HOME="$PWD"
|
|
|
|
|
|
|
|
echo 'NEXT_PUBLIC_API_URL="${api_url}"' > .env.local
|
|
|
|
|
|
|
|
fixup_yarn_lock yarn.lock
|
|
|
|
yarn config --offline set yarn-offline-mirror ${finalAttrs.offlineCache}
|
|
|
|
yarn install --offline --frozen-lockfile --ignore-platform --ignore-scripts --no-progress --non-interactive
|
|
|
|
patchShebangs node_modules
|
|
|
|
|
|
|
|
mkdir -p src/app/fonts
|
|
|
|
cp "${
|
|
|
|
google-fonts.override { fonts = [ "Karla" ]; }
|
|
|
|
}/share/fonts/truetype/Karla[wght].ttf" src/app/fonts/karla.ttf
|
|
|
|
|
|
|
|
runHook postConfigure
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
|
|
|
|
NODE_ENV=production yarn build
|
|
|
|
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out
|
|
|
|
cp -R .next/* $out
|
|
|
|
cp -R public $out/standalone/
|
|
|
|
cp -R .next/static $out/standalone/.next
|
|
|
|
|
|
|
|
ln -s /var/cache/crabfit $out/standalone/.next/cache
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Enter your availability to find a time that works for everyone";
|
|
|
|
homepage = "https://github.com/GRA0007/crab.fit";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ thubrecht ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
)
|