155 lines
5.4 KiB
Nix
155 lines
5.4 KiB
Nix
{ lib, stdenv, nodejs-slim, mkYarnPackage, fetchFromGitHub, bundlerEnv, nixosTests
|
|
, yarn, callPackage, imagemagick, ffmpeg, file, ruby_3_0, writeShellScript
|
|
, fetchYarnDeps, fixup_yarn_lock
|
|
, brotli
|
|
|
|
# Allow building a fork or custom version of Mastodon:
|
|
, pname ? "mastodon"
|
|
, version ? import ./version.nix
|
|
, srcOverride ? null
|
|
, dependenciesDir ? ./. # Should contain gemset.nix, yarn.nix and package.json.
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit pname version;
|
|
|
|
# Using overrideAttrs on src does not build the gems and modules with the overridden src.
|
|
# Putting the callPackage up in the arguments list also does not work.
|
|
src = if srcOverride != null then srcOverride else callPackage ./source.nix {};
|
|
|
|
mastodonGems = bundlerEnv {
|
|
name = "${pname}-gems-${version}";
|
|
inherit version;
|
|
ruby = ruby_3_0;
|
|
gemdir = src;
|
|
gemset = dependenciesDir + "/gemset.nix";
|
|
# 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
|
|
'';
|
|
};
|
|
|
|
mastodonModules = stdenv.mkDerivation {
|
|
pname = "${pname}-modules";
|
|
inherit src version;
|
|
|
|
yarnOfflineCache = fetchYarnDeps {
|
|
yarnLock = "${src}/yarn.lock";
|
|
sha256 = "sha256-fuU92fydoazSXBHwA+DG//gRgWVYQ1M3m2oNS2iwv4I=";
|
|
};
|
|
|
|
nativeBuildInputs = [ fixup_yarn_lock nodejs-slim yarn mastodonGems mastodonGems.wrappedRuby brotli ];
|
|
|
|
RAILS_ENV = "production";
|
|
NODE_ENV = "production";
|
|
|
|
buildPhase = ''
|
|
export HOME=$PWD
|
|
# This option is needed for openssl-3 compatibility
|
|
# Otherwise we encounter this upstream issue: https://github.com/mastodon/mastodon/issues/17924
|
|
export NODE_OPTIONS=--openssl-legacy-provider
|
|
fixup_yarn_lock ~/yarn.lock
|
|
yarn config --offline set yarn-offline-mirror $yarnOfflineCache
|
|
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
|
|
|
|
# Create missing static gzip and brotli files
|
|
gzip -9 -n -c ~/public/assets/500.html > ~/public/assets/500.html.gz
|
|
gzip -9 -n -c ~/public/packs/report.html > ~/public/packs/report.html.gz
|
|
find ~/public/assets -maxdepth 1 -type f -name ".*.json" | while read file; do
|
|
gzip -9 -n -c $file > $file.gz
|
|
done
|
|
brotli --best -f ~/public/packs/report.html -o ~/public/packs/report.html.br
|
|
find ~/public/assets -type f -regextype posix-extended -iregex '.*\.(css|js|json|html)' | while read file; do
|
|
brotli --best -f $file -o $file.br
|
|
done
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/public
|
|
cp -r node_modules $out/node_modules
|
|
cp -r public/assets $out/public
|
|
cp -r public/packs $out/public
|
|
'';
|
|
};
|
|
|
|
propagatedBuildInputs = [ imagemagick ffmpeg file mastodonGems.wrappedRuby ];
|
|
buildInputs = [ mastodonGems nodejs-slim ];
|
|
|
|
buildPhase = ''
|
|
ln -s $mastodonModules/node_modules node_modules
|
|
ln -s $mastodonModules/public/assets public/assets
|
|
ln -s $mastodonModules/public/packs public/packs
|
|
|
|
patchShebangs bin/
|
|
for b in $(ls $mastodonGems/bin/)
|
|
do
|
|
if [ ! -f bin/$b ]; then
|
|
ln -s $mastodonGems/bin/$b bin/$b
|
|
fi
|
|
done
|
|
|
|
# Create missing static gzip and brotli files
|
|
find public -maxdepth 1 -type f -regextype posix-extended -iregex '.*\.(css|js|svg|txt|xml)' | while read file; do
|
|
gzip -9 -n -c $file > $file.gz
|
|
brotli --best -f $file -o $file.br
|
|
done
|
|
find public/emoji -type f -name "*.svg" | while read file; do
|
|
gzip -9 -n -c $file > $file.gz
|
|
brotli --best -f $file -o $file.br
|
|
done
|
|
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
|
|
|
|
rm -rf log
|
|
ln -s /var/log/mastodon log
|
|
ln -s /tmp tmp
|
|
'';
|
|
|
|
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
|
|
'';
|
|
in ''
|
|
mkdir -p $out
|
|
cp -r * $out/
|
|
ln -s ${run-streaming} $out/run-streaming.sh
|
|
'';
|
|
|
|
passthru = {
|
|
tests.mastodon = nixosTests.mastodon;
|
|
updateScript = callPackage ./update.nix {};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Self-hosted, globally interconnected microblogging software based on ActivityPub";
|
|
homepage = "https://joinmastodon.org";
|
|
license = licenses.agpl3Plus;
|
|
platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
|
|
maintainers = with maintainers; [ happy-river erictapen izorkin ghuntley ];
|
|
};
|
|
}
|