Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bd074bf60de2
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2d2e503d2a57
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 16, 2017

  1. mattermost: 4.3.0 -> 4.4.0

    ryantm committed Nov 16, 2017
    Copy the full SHA
    8ac31ff View commit details
  2. Merge pull request #31749 from ryantm/mattermost-4.4.0

    mattermost: 4.3.0 -> 4.4.0
    orivej authored Nov 16, 2017
    Copy the full SHA
    2d2e503 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/servers/mattermost/default.nix
6 changes: 3 additions & 3 deletions pkgs/servers/mattermost/default.nix
Original file line number Diff line number Diff line change
@@ -2,18 +2,18 @@

buildGoPackage rec {
name = "mattermost-${version}";
version = "4.3.0";
version = "4.4.0";

src = fetchFromGitHub {
owner = "mattermost";
repo = "mattermost-server";
rev = "v${version}";
sha256 = "05119h3x81p8plfjq99khfywc3plv2zynvf83vkhj48zqk61wvbq";
sha256 = "0imda96wgr2nkkxs2jfcqszx1fqgmbbrh7zqmgjh6ks3an1v4m3c";
};

webApp = fetchurl {
url = "https://releases.mattermost.com/${version}/mattermost-team-${version}-linux-amd64.tar.gz";
sha256 = "0d30zj036nz6vwpiv0mn656j5r4br6y4x8iqc5jn785fiwk2pdls";
sha256 = "1ifxx17sm24c6sihg38lzpnb5x24m04bk25nn5hrw9iwc37lfzlp";
};

goPackagePath = "github.com/mattermost/mattermost-server";