nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 23 lines 850 B view raw
1{ 2 mattermost, 3}: 4 5mattermost.override { 6 versionInfo = { 7 # Latest, non-RC releases only. 8 # If the latest is an ESR (Extended Support Release), 9 # duplicate it here to facilitate the update script. 10 # See https://docs.mattermost.com/about/mattermost-server-releases.html 11 # and make sure the version regex is up to date here. 12 # Ensure you also check ../mattermost/package.nix for ESR releases. 13 regex = "^v(11\\.[0-9]+\\.[0-9]+)$"; 14 version = "11.3.0"; 15 srcHash = "sha256-D5LR3kk9HO8vuvykCgaV5k5Y/M7t63afxXj1iUBS1j8="; 16 vendorHash = "sha256-3Ic8ogcLLzcFOmBzhFnsh16hVvhyIsfDeNgZevQlL9A="; 17 npmDepsHash = "sha256-w54D5HMLW5wP6ercgWXv3Hb7Ayrj3M1SvNoUu1aU2Bk="; 18 lockfileOverlay = '' 19 unlock(.; "@floating-ui/react"; "channels/node_modules/@floating-ui/react") 20 ''; 21 autoUpdate = ./package.nix; 22 }; 23}