mattermost 7.8.4 -> 7.10.2 https://github.com/mattermost/mattermost-server/releases attrpath: mattermost Checking auto update branch... No auto update branch exists Old version 7.8.4" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , fetchurl , nixosTests }: buildGoModule rec { pname = "mattermost"; version = "7.8.5"; src = fetchFromGitHub { owner = "mattermost"; repo = "mattermost-server"; rev = "v${version}"; hash = "sha256-qC6tJcWruiTbWXKuACuhl0kwbRdPVXfUlaFJx4DiQgE="; }; webapp = fetchurl { url = "https://releases.mattermost.com/${version}/mattermost-${version}-linux-amd64.tar.gz"; hash = "sha256-ojAGa4tZ5aZp+4XSW6ycDvJ295zH8GaYsA9w6z8n2WM="; }; vendorHash = "sha256-VvGLYOESyoBpFmIibHWxazliHcscMxf3KcQ46NQ4syk="; subPackages = [ "cmd/mattermost" ]; ldflags = [ "-s" "-w" "-X github.com/mattermost/mattermost-server/v6/model.Version=${version}" "-X github.com/mattermost/mattermost-server/v6/model.BuildNumber=${version}-nixpkgs" "-X github.com/mattermost/mattermost-server/v6/model.BuildDate=1970-01-01" "-X github.com/mattermost/mattermost-server/v6/model.BuildHash=v${version}" "-X github.com/mattermost/mattermost-server/v6/model.BuildHashEnterprise=v${version}" "-X github.com/mattermost/mattermost-server/v6/model.BuildEnterpriseReady=false" ]; postInstall = '' tar --strip 1 --directory $out -xf $webapp \ mattermost/{client,i18n,fonts,templates,config} # For some reason a bunch of these files are executable find $out/{client,i18n,fonts,templates,config} -type f -exec chmod -x {} \; ''; passthru.tests.mattermost = nixosTests.mattermost; meta = with lib; { description = "Mattermost is an open source platform for secure collaboration across the entire software development lifecycle"; homepage = "https://www.mattermost.org"; license = with licenses; [ agpl3 asl20 ]; maintainers = with maintainers; [ ryantm numinit kranzes ]; }; }