update mastodon

This commit is contained in:
Vivian 2025-05-29 13:53:41 +02:00
parent 2fe6723d1d
commit 82f22fb7e7
9 changed files with 164 additions and 176 deletions

View file

@ -1,8 +1,8 @@
/*
This fetches the glitch-soc source from GitHub and patches it.
This fetches the glitch-soc source from GitHub and patches it.
This needs to be a separately buildable package so that update.sh can build it during upgrading,
because it needs it for generating `gemset.nix` from the Gemfile in the source.
This needs to be a separately buildable package so that update.sh can build it during upgrading,
because it needs it for generating `gemset.nix` from the Gemfile in the source.
*/
{
@ -13,13 +13,11 @@
let
versionData = import ./version_data.nix;
in
applyPatches {
in applyPatches {
src = fetchFromGitHub {
owner = "glitch-soc";
repo = "mastodon";
inherit (versionData) rev hash;
};
# patches = lib.filesystem.listFilesRecursive ./patches;
patches = [ ];
patches = lib.filesystem.listFilesRecursive ./patches;
}