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: 5c2fbc8d279a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4371ecb8a61f
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 10, 2020

  1. Copy the full SHA
    4371ecb View commit details
Showing with 5 additions and 4 deletions.
  1. +5 −4 pkgs/servers/matterbridge/default.nix
9 changes: 5 additions & 4 deletions pkgs/servers/matterbridge/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{ stdenv, buildGoPackage, fetchurl }:
{ stdenv, buildGoModule, fetchurl }:

buildGoPackage rec {
buildGoModule rec {
pname = "matterbridge";
version = "1.11.0";
version = "1.16.3";

goPackagePath = "github.com/42wim/matterbridge";
modSha256 = "sha256-Q6R6AhAELirFijw5ntyjly46HCzFMpLGSJYfv864gt0=";

src = fetchurl {
url = "https://github.com/42wim/matterbridge/archive/v${version}.tar.gz";
sha256 = "1fjpgdaq4mfgf36gzk3hhmlbpfn44b7xll2rdpy69y460jrjfg6k";
sha256 = "sha256-VAbZSXilmmd2z2bK4/UZzOrjohDVcJHah9t3DE1mtOE=";
};

meta = with stdenv.lib; {