mastodon: 4.2.5
This commit is contained in:
parent
0240e9068f
commit
5eb928c8e5
1 changed files with 21 additions and 1 deletions
|
@ -3,7 +3,27 @@
|
||||||
let
|
let
|
||||||
web-domain = "mastodon.kempkens.io";
|
web-domain = "mastodon.kempkens.io";
|
||||||
|
|
||||||
pkg-mastodon = pkgs.mastodon.overrideAttrs (_: {
|
pkg-base = pkgs.mastodon.override {
|
||||||
|
srcOverride =
|
||||||
|
let
|
||||||
|
version = "4.2.5";
|
||||||
|
in
|
||||||
|
(
|
||||||
|
pkgs.applyPatches {
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "mastodon";
|
||||||
|
repo = "mastodon";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-dgC5V/CVE9F1ORTjPWUWc/JVcWCEj/pb4eWpDV0WliY=";
|
||||||
|
};
|
||||||
|
patches = [ ];
|
||||||
|
}) // {
|
||||||
|
inherit version;
|
||||||
|
yarnHash = "sha256-qoLesubmSvRsXhKwMEWHHXcpcqRszqcdZgHQqnTpNPE=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
pkg-mastodon = pkg-base.overrideAttrs (_: {
|
||||||
mastodonModules = pkgs.mastodon.mastodonModules.overrideAttrs (oldMods:
|
mastodonModules = pkgs.mastodon.mastodonModules.overrideAttrs (oldMods:
|
||||||
let
|
let
|
||||||
tangerine-ui = pkgs.fetchFromGitHub {
|
tangerine-ui = pkgs.fetchFromGitHub {
|
||||||
|
|
Loading…
Reference in a new issue