mattermost: 6.3.0 -> 6.3.1

This commit is contained in:
Morgan Jones 2022-01-23 16:56:02 -07:00
parent 96255dd472
commit ee4d243452

View File

@ -10,7 +10,7 @@
, storePathAsBuildHash ? false }:
let
version = "6.3.0";
version = "6.3.1";
goPackagePath = "github.com/mattermost/mattermost-server";
@ -22,7 +22,7 @@ let
owner = "mattermost";
repo = "mattermost-server";
rev = "v${version}";
sha256 = "y3VTDl01UrMpgoN06lf98C+uTu2N9u0EAWYADPpOI3w=";
sha256 = "cUeGjKutz6Yeq/cP7nYx0zPJ87GKOQWRyNSERzq/nPw=";
};
ldflags = [
@ -65,7 +65,7 @@ let
src = fetchurl {
url = "https://releases.mattermost.com/${version}/mattermost-${version}-linux-amd64.tar.gz";
sha256 = "PqinkPC7J6Ng1fjTrcAa6ZqiyB2JKkGRdvJ6h2wNS5w=";
sha256 = "lFwSZsAcQuuWTN+4wCe7GDLkhp1ASn5GE7/K5Vppr14=";
};
installPhase = ''
@ -76,6 +76,9 @@ let
mattermost/fonts \
mattermost/templates \
mattermost/config
# For some reason a bunch of these files are +x...
find $out -type f -exec chmod -x {} \;
'';
};