about summary refs log tree commit diff
path: root/pkgs/servers/mastodon
AgeCommit message (Collapse)AuthorFilesLines
2024-05-30mastodon: 4.2.8 -> 4.2.9Kerstin Humm2-14/+25
2024-05-30mastodon: remove outdated override for openssl 3 supportKerstin Humm1-3/+0
2024-04-17treewide: replace prefetch-yarn-deps with fixup-yarn-lock where necessarySandro Jäckel1-2/+2
2024-02-23mastodon: 4.2.7 -> 4.2.8Sandro Jäckel2-42/+42
Changelog: https://github.com/mastodon/mastodon/releases/tag/v4.2.8
2024-02-16mastodon: 4.2.6 -> 4.2.7Leona Maroni2-10/+8
https://github.com/mastodon/mastodon/releases/tag/v4.2.7
2024-02-14mastodon: 4.2.5 -> 4.2.6Vladimir Pouzanov2-16/+16
2024-02-01Merge pull request #285571 from erictapen/mastodonSandro1-12/+0
mastodon: remove outdated override for ruby gems
2024-02-01mastodon: 4.2.4 -> 4.2.5Thomas Gerbet1-2/+2
Fixes CVE-2024-23832 https://github.com/mastodon/mastodon/releases/tag/v4.2.5
2024-01-31mastodon: remove outdated overrideKerstin Humm1-12/+0
2024-01-24mastodon: 4.2.3 -> 4.2.4Sandro Jäckel2-6/+6
2023-12-20mastodon: remove tools from propagatedBuildInputsIzorkin1-2/+3
2023-12-05mastodon: 4.2.2 -> 4.2.3Kerstin Humm2-9/+19
2023-12-04mastodon: 4.2.1 -> 4.2.2Kerstin Humm1-2/+2
2023-11-23mastodon: migrate to prefetch-yarn-depsFelix Buehler1-3/+3
2023-11-20mastodon: easier build patchingVladimir Pouzanov3-5/+6
2023-11-14mastodon: 4.1.6 -> 4.2.1Kerstin Humm3-440/+577
- run streaming processes in separate systemd services - remove redundancy in test - fix update script - release notes See https://github.com/mastodon/mastodon/releases/tag/v4.2.1 for details
2023-11-14mastodon: use nodejs 20 and ruby 3.2Kerstin Humm1-3/+2
2023-10-30mastodon: fix revWeijia Wang2-2/+2
2023-09-28mastodon: apply suggestionWeijia Wang2-4/+10
2023-09-28mastodon: reduce the amount of files information is spread acrossSandro Jäckel5-24/+19
2023-09-28mastodon: simplify update scriptWeijia Wang1-1/+0
2023-09-28mastodon: fix updateScriptKerstin Humm1-1/+1
nix-prefetch-github emits "hash" attribute, not "sha256"
2023-09-27mastodon: generate and read yarn hash from dependencies dirDan Buch3-4/+12
Co-authored-by: Robert Schütz <github@dotlambda.de>
2023-09-21mastodon: 4.1.8 -> 4.1.9Sandro Jäckel2-3/+3
2023-09-19mastodon: 4.1.7 -> 4.1.8Sophie Tauchert2-3/+3
2023-09-05mastodon: 4.1.6 -> 4.1.7Sandro Jäckel2-3/+3
2023-07-31mastodon: 4.1.5 -> 4.1.6 (#246348)Kerstin2-3/+3
2023-07-22mastodon: 4.1.4 -> 4.1.5Sandro Jäckel3-4/+4
2023-07-22Merge pull request #241937 from SuperSandro2000/mastodon-update-scriptSandro3-41/+14
mastodon: simplify update script
2023-07-18mastodon: adapt update script to new nix-prefetch-githubTheodore Ni2-3/+3
2023-07-07mastodon: 4.1.3 -> 4.1.4Sandro Jäckel3-5/+5
2023-07-06mastodon: simplify update scriptSandro Jäckel3-41/+14
2023-07-06mastodon: 4.1.2 -> 4.1.3Sophie Tauchert3-51/+51
2023-07-05Merge pull request #238836 from SuperSandro2000/mastodon-fetchfromgithubSandro3-28/+32
2023-07-03mastodon: add runHooksSandro Jäckel1-0/+16
This makes constructing overrides easier
2023-06-20mastodon: use fetchFromGitHub, fix shellcheck hintsSandro Jäckel3-28/+32
2023-04-05mastodon: 4.1.1 -> 4.1.2Kerstin Humm2-10/+5
2023-03-29mastodon: update ruby packageIzorkin2-5/+9
2023-03-20mastodon: 4.1.0 -> 4.1.1Izorkin3-20/+19
2023-02-11mastodon: 4.0.2 -> 4.1.0Kerstin Humm4-198/+307
2023-01-26mastodon: create missing static gzip and brotli filesIzorkin1-1/+29
2023-01-07mastodon: pass dependencies as environment variablesAndrew Dunham1-10/+10
This makes it much easier to override components of the Mastodon derivation to e.g. use a fork. With this change, one can use something like the following to install a fork (with the appropriate files): let src = callPackage ./source.nix { }; in (mastodon.override { pname = "hometown"; version = import ./version.nix; srcOverride = src; dependenciesDir = ./.; }).overrideAttrs (oldAttrs: rec { yarnOfflineCache = fetchYarnDeps { yarnLock = "${src}/yarn.lock"; sha256 = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; }; mastodonModules = oldAttrs.mastodonModules.overrideAttrs (oldModuleAttrs: { inherit yarnOfflineCache; }); }); A spiritual successor to f949de4fbb5c5adb7f3ec085206f48a2efdd1d9a
2022-11-17mastodon: 3.5.3 -> 4.0.2Kerstin Humm4-206/+209
2022-11-16mastodon: add ghuntley as maintainerGeoffrey Huntley1-1/+1
2022-10-02mastodon: pass yarnOfflineCache as environment variableYureka1-6/+6
2022-09-25mastodon: Fix compatibility for openssl 3Robert Gerus1-0/+3
https://github.com/mastodon/mastodon/issues/17924
2022-06-29maintainers: remove petabyteboyajs1241-1/+1
github account deleted
2022-05-27mastodon: 3.5.2 -> 3.5.3Kerstin Humm4-86/+65
2022-05-04mastodon: 3.5.1 -> 3.5.2techknowlogick4-76/+76
2022-04-09mastodon.updateScript: use correct input for nix-prefetch-git, better formattingKerstin Humm2-24/+24