mastodon: update ruby package

This commit is contained in:
Izorkin 2023-03-28 13:19:25 +03:00 committed by Kerstin
parent cffe9414d6
commit e57d014454
2 changed files with 9 additions and 5 deletions

View File

@ -353,15 +353,14 @@
version = "1.0.0";
};
blurhash = {
dependencies = ["ffi"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1rs61mwdiyriq8mb8na2sfrqzz8igls04md63ajyhk4yj8d2j0sz";
sha256 = "057afgqy73n8vm7k3cr4pbwm1hhqnm58lp4x7bgm5wzbs39m7xf8";
type = "gem";
};
version = "0.1.6";
version = "0.1.7";
};
bootsnap = {
dependencies = ["msgpack"];

View File

@ -1,5 +1,5 @@
# This file was generated by pkgs.mastodon.updateScript.
{ fetchgit, applyPatches }: let
{ fetchgit, applyPatches, fetchpatch }: let
src = fetchgit {
url = "https://github.com/mastodon/mastodon.git";
rev = "v4.1.1";
@ -7,5 +7,10 @@
};
in applyPatches {
inherit src;
patches = [];
patches = [
(fetchpatch {
url = "https://github.com/mastodon/mastodon/commit/e7b81d7d9625893b1323e12215a2a98c0f19f58f.patch";
hash = "sha256-cF0wtbjTNbsyqHb3uy5zYFaACIcziJ2ulJpOT5VoDO0=";
})
];
}