infrastructure/nixos/pkgs/glitch-soc/default.nix

170 lines
5.3 KiB
Nix
Raw Normal View History

2023-12-06 19:58:23 +01:00
{ lib, stdenv, nodejs-slim, bundlerEnv, nixosTests
, yarn, callPackage, imagemagick, ffmpeg, file, ruby, writeShellScript
, fetchYarnDeps, prefetch-yarn-deps
, brotli
2023-05-04 13:08:10 +02:00
2023-09-25 11:56:02 +02:00
# Allow building a fork or custom version of Mastodon:
, pname ? "mastodon"
2023-12-06 19:58:23 +01:00
, version ? srcOverride.version
, patches ? []
# src is a package
, srcOverride ? callPackage ./source.nix { inherit patches; }
, gemset ? ./. + "/gemset.nix"
, yarnHash ? srcOverride.yarnHash
2022-09-10 15:10:01 +02:00
}:
stdenv.mkDerivation rec {
inherit pname version;
2023-12-06 19:58:23 +01:00
src = srcOverride;
2022-09-10 15:10:01 +02:00
2023-12-06 19:58:23 +01:00
mastodonGems = bundlerEnv {
2022-09-10 15:10:01 +02:00
name = "${pname}-gems-${version}";
2023-12-06 19:58:23 +01:00
inherit version gemset ruby;
2022-09-10 15:10:01 +02:00
gemdir = src;
# This fix (copied from https://github.com/NixOS/nixpkgs/pull/76765) replaces the gem
# symlinks with directories, resolving this error when running rake:
# /nix/store/451rhxkggw53h7253izpbq55nrhs7iv0-mastodon-gems-3.0.1/lib/ruby/gems/2.6.0/gems/bundler-1.17.3/lib/bundler/settings.rb:6:in `<module:Bundler>': uninitialized constant Bundler::Settings (NameError)
postBuild = ''
for gem in "$out"/lib/ruby/gems/*/gems/*; do
cp -a "$gem/" "$gem.new"
rm "$gem"
# needed on macOS, otherwise the mv yields permission denied
chmod +w "$gem.new"
mv "$gem.new" "$gem"
done
'';
};
2023-12-06 19:58:23 +01:00
mastodonModules = stdenv.mkDerivation {
2022-09-10 15:10:01 +02:00
pname = "${pname}-modules";
inherit src version;
2022-11-06 22:13:48 +01:00
yarnOfflineCache = fetchYarnDeps {
yarnLock = "${src}/yarn.lock";
2023-12-06 19:58:23 +01:00
hash = yarnHash;
2022-11-06 22:13:48 +01:00
};
2023-12-06 19:58:23 +01:00
nativeBuildInputs = [ prefetch-yarn-deps nodejs-slim yarn mastodonGems mastodonGems.wrappedRuby brotli ];
2022-09-10 15:10:01 +02:00
RAILS_ENV = "production";
NODE_ENV = "production";
buildPhase = ''
2023-12-06 19:58:23 +01:00
runHook preBuild
2022-09-10 15:10:01 +02:00
export HOME=$PWD
2022-11-06 22:13:48 +01:00
# This option is needed for openssl-3 compatibility
# Otherwise we encounter this upstream issue: https://github.com/mastodon/mastodon/issues/17924
2022-10-02 16:04:25 +02:00
export NODE_OPTIONS=--openssl-legacy-provider
2023-12-06 19:58:23 +01:00
fixup-yarn-lock ~/yarn.lock
2022-11-06 22:13:48 +01:00
yarn config --offline set yarn-offline-mirror $yarnOfflineCache
2022-09-10 15:10:01 +02:00
yarn install --offline --frozen-lockfile --ignore-engines --ignore-scripts --no-progress
patchShebangs ~/bin
patchShebangs ~/node_modules
# skip running yarn install
rm -rf ~/bin/yarn
OTP_SECRET=precompile_placeholder SECRET_KEY_BASE=precompile_placeholder \
rails assets:precompile
yarn cache clean --offline
rm -rf ~/node_modules/.cache
2023-12-06 19:58:23 +01:00
# Create missing static gzip and brotli files
gzip --best --keep ~/public/assets/500.html
gzip --best --keep ~/public/packs/report.html
find ~/public/assets -maxdepth 1 -type f -name '.*.json' \
-exec gzip --best --keep --force {} ';'
brotli --best --keep ~/public/packs/report.html
find ~/public/assets -type f -regextype posix-extended -iregex '.*\.(css|js|json|html)' \
-exec brotli --best --keep {} ';'
runHook postBuild
2022-09-10 15:10:01 +02:00
'';
installPhase = ''
2023-12-06 19:58:23 +01:00
runHook preInstall
2022-09-10 15:10:01 +02:00
mkdir -p $out/public
cp -r node_modules $out/node_modules
cp -r public/assets $out/public
cp -r public/packs $out/public
2023-12-06 19:58:23 +01:00
runHook postInstall
2022-09-10 15:10:01 +02:00
'';
};
2023-12-06 19:58:23 +01:00
propagatedBuildInputs = [ imagemagick ffmpeg file mastodonGems.wrappedRuby ];
buildInputs = [ mastodonGems nodejs-slim ];
2022-09-10 15:10:01 +02:00
buildPhase = ''
2023-12-06 19:58:23 +01:00
runHook preBuild
ln -s $mastodonModules/node_modules node_modules
ln -s $mastodonModules/public/assets public/assets
ln -s $mastodonModules/public/packs public/packs
2022-09-10 15:10:01 +02:00
patchShebangs bin/
2023-12-06 19:58:23 +01:00
for b in $(ls $mastodonGems/bin/)
2022-09-10 15:10:01 +02:00
do
if [ ! -f bin/$b ]; then
2023-12-06 19:58:23 +01:00
ln -s $mastodonGems/bin/$b bin/$b
2022-09-10 15:10:01 +02:00
fi
done
2023-12-06 19:58:23 +01:00
# Remove execute permissions
chmod 0444 public/emoji/*.svg
# Create missing static gzip and brotli files
find public -maxdepth 1 -type f -regextype posix-extended -iregex '.*\.(css|js|svg|txt|xml)' \
-exec gzip --best --keep --force {} ';' \
-exec brotli --best --keep {} ';'
find public/emoji -type f -name '.*.svg' \
-exec gzip --best --keep --force {} ';' \
-exec brotli --best --keep {} ';'
ln -s assets/500.html.gz public/500.html.gz
ln -s assets/500.html.br public/500.html.br
ln -s packs/sw.js.gz public/sw.js.gz
ln -s packs/sw.js.br public/sw.js.br
ln -s packs/sw.js.map.gz public/sw.js.map.gz
ln -s packs/sw.js.map.br public/sw.js.map.br
2022-09-10 15:10:01 +02:00
rm -rf log
ln -s /var/log/mastodon log
ln -s /tmp tmp
2023-12-06 19:58:23 +01:00
runHook postBuild
2022-09-10 15:10:01 +02:00
'';
2023-12-06 19:58:23 +01:00
installPhase = let
run-streaming = writeShellScript "run-streaming.sh" ''
# NixOS helper script to consistently use the same NodeJS version the package was built with.
${nodejs-slim}/bin/node ./streaming
2022-09-10 15:10:01 +02:00
'';
2023-12-06 19:58:23 +01:00
in ''
runHook preInstall
mkdir -p $out
cp -r * $out/
ln -s ${run-streaming} $out/run-streaming.sh
runHook postInstall
'';
2022-09-10 15:10:01 +02:00
passthru = {
tests.mastodon = nixosTests.mastodon;
2023-12-06 19:58:23 +01:00
# run with: nix-shell ./maintainers/scripts/update.nix --argstr package mastodon
updateScript = ./update.sh;
2022-09-10 15:10:01 +02:00
};
meta = with lib; {
2023-12-06 19:58:23 +01:00
description = "Self-hosted, globally interconnected microblogging software based on ActivityPub";
2022-09-10 15:10:01 +02:00
homepage = "https://joinmastodon.org";
license = licenses.agpl3Plus;
platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
2023-12-06 19:58:23 +01:00
maintainers = with maintainers; [ happy-river erictapen izorkin ghuntley ];
2022-09-10 15:10:01 +02:00
};
}