lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

mattermost: 9.5.3 -> 9.5.4

+4 -4
+4 -4
pkgs/servers/mattermost/default.nix
··· 12 12 # See https://docs.mattermost.com/upgrade/extended-support-release.html 13 13 # When a new ESR version is available (e.g. 8.1.x -> 9.5.x), update 14 14 # the version regex in passthru.updateScript as well. 15 - version = "9.5.3"; 15 + version = "9.5.4"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "mattermost"; 19 19 repo = "mattermost"; 20 20 rev = "v${version}"; 21 - hash = "sha256-kqwRwo7eL9xfOyP54oS800L6bisVwJf9FpgTnwfmjAo="; 21 + hash = "sha256-iuUTAdgJJDSvUwVmcggJ4ZMVbQ19ymuIaB0PDIgEIdg="; 22 22 }; 23 23 24 24 # Needed because buildGoModule does not support go workspaces yet. ··· 34 34 35 35 webapp = fetchurl { 36 36 url = "https://releases.mattermost.com/${version}/mattermost-${version}-linux-amd64.tar.gz"; 37 - hash = "sha256-f2Zap/15TOyzCP97BGGmXimwAa1mTP42w37RToNkAsQ="; 37 + hash = "sha256-OVq+puaXPJGOmW9pcgX24LXBfYLzuczRY7KG2tQBY3Q="; 38 38 }; 39 39 40 40 vendorHash = "sha256-TJCtgNf56A1U0EbV5gXjTro+YudVBRWiSZoBC3nJxnE="; ··· 69 69 70 70 passthru = { 71 71 updateScript = nix-update-script { 72 - extraArgs = [ "--version-regex" "^v(9\.5\.([0-9.]+))" ]; 72 + extraArgs = [ "--version-regex" "v(9\.5\.[0-9]+)" ]; 73 73 }; 74 74 tests.mattermost = nixosTests.mattermost; 75 75 };