fix: update mastodon to v4.2.6

This commit is contained in:
Ivan R. 2024-02-14 22:40:41 +05:00
parent 3876aea96c
commit c2d01d7340
2 changed files with 10 additions and 6 deletions

View file

@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1706718339,
"narHash": "sha256-S+S97c/HzkO2A/YsU7ZmNF9w2s7Xk6P8dzmfDdckzLs=",
"lastModified": 1707786466,
"narHash": "sha256-yLPfrmW87M2qt+8bAmwopJawa+MJLh3M9rUbXtpUc1o=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "53fbe41cf76b6a685004194e38e889bc8857e8c2",
"rev": "01885a071465e223f8f68971f864b15829988504",
"type": "github"
},
"original": {

View file

@ -4,11 +4,15 @@
(final: prev:
rec {
mastodon = prev.mastodon.override {
version = "4.2.5";
version = "4.2.6";
gemset = builtins.toString (final.fetchurl {
url = "https://raw.githubusercontent.com/NixOS/nixpkgs/5cd625ed59521004edd40e4547c4843413ff4fce/pkgs/servers/mastodon/gemset.nix";
hash = "sha256-GqeL/z9LBrxV0nuiMFLIE6/Gg3jhydJxt7N2vr6iZAQ=";
});
patches = [
(final.fetchpatch {
url = "https://github.com/mastodon/mastodon/compare/v4.2.4...v4.2.5.patch";
hash = "sha256-CtzYV1i34s33lV/1jeNcr9p/x4Es1zRaf4l1sNWVKYk=";
url = "https://github.com/mastodon/mastodon/compare/v4.2.5...v4.2.6.patch";
hash = "sha256-ElTQFC73dPTiorVOIRCjuGxV8YuXTqNVbaOvil5KP9k=";
})
];
};