update mastodon

This commit is contained in:
Vivian 2023-12-06 19:58:23 +01:00
parent 0d75bf8f84
commit ac4b913fdd
6 changed files with 1483 additions and 1442 deletions

View file

@ -1,13 +1,18 @@
# This file was generated by pkgs.mastodon.updateScript.
{ fetchgit, applyPatches }:
{ fetchFromGitHub, applyPatches, patches ? [] }:
let
src = fetchgit {
url = "https://github.com/glitch-soc/mastodon.git";
rev = "a1df9fdb06854bd55f018918236132ccfa7d9d84";
sha256 = "0amqiigq3qgag6qm119aaysmd2k93vwgr1aynxjxmbpn35ykcay3";
};
version = "0e562916cce3241d98bd10f04a6aa7419700605";
in
applyPatches {
inherit src;
patches = [ ];
(
applyPatches {
src = fetchFromGitHub {
owner = "glitch-soc";
repo = "mastodon";
rev = "v${version}";
hash = "sha256-fZH3zPEU5jnYFhLx8OKDNrvsSVT46Peu92L84Fg5YpQ=";
};
patches = patches ++ [];
}) // {
inherit version;
yarnHash = "sha256-P7KswzsCusyiS4MxUFnC1HYMTQ6fLpIwd97AglCukIk=";
}