24 lines
524 B
Nix
24 lines
524 B
Nix
# This file was generated by pkgs.mastodon.updateScript.
|
|
{
|
|
fetchFromGitHub,
|
|
applyPatches,
|
|
patches ? [ ],
|
|
}:
|
|
let
|
|
version = "4.4.3";
|
|
in
|
|
applyPatches {
|
|
src = fetchFromGitHub {
|
|
owner = "mastodon";
|
|
repo = "mastodon";
|
|
rev = "v${version}";
|
|
hash = "sha256-HFvsf8uNP5TV6vPaIkWKnuOKExQhgvrhyRWf3OCqIDk=";
|
|
passthru = {
|
|
inherit version;
|
|
yarnHash = "sha256-jqiPxkbD0MmnUPK/P0zaYEB6rMRK20ito+o98+FHZdE=";
|
|
yarnMissingHashes = ./missing-hashes.json;
|
|
};
|
|
};
|
|
patches = patches ++ [ ];
|
|
}
|