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: 241ffca67dbc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fe9a15211a00
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 28, 2019

  1. Copy the full SHA
    91afe56 View commit details
  2. gomuks: 2018-07-10 -> 2019-06-28 (#63893)

    gomuks: 2018-07-10 -> 2019-06-28
    Mic92 authored Jun 28, 2019
    Copy the full SHA
    fe9a152 View commit details
Showing with 10 additions and 8 deletions.
  1. +10 −8 pkgs/applications/networking/instant-messengers/gomuks/default.nix
18 changes: 10 additions & 8 deletions pkgs/applications/networking/instant-messengers/gomuks/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{ stdenv, buildGo110Package, fetchFromGitHub }:
{ stdenv, buildGoModule, fetchFromGitHub }:

buildGo110Package rec {
name = "gomuks-${version}";
version = "2018-07-10";
buildGoModule rec {
pname = "gomuks";
version = "2019-06-28";

goPackagePath = "maunium.net/go/gomuks";

src = fetchFromGitHub {
owner = "tulir";
repo = "gomuks";
rev = "68db26bcace31297471641fe95f8882e301f5699";
sha256 = "0dagdvsvn8nwqsvjbqk1c6gg2q1m40869nayrkwm3ndg2xkfdpm6";
repo = pname;
rev = "37df8eb454088e61db7a14f382851205bc1806ad";
sha256 = "1hr15d9sbq6mddaxv3pwz86qp1hhzssgrvakfpc49xl4h04dq33g";
};

modSha256 = "1qrqgzzsxqvmy4m9shypa94bzw34mc941jhmyccip9grk9fzsxws";

meta = with stdenv.lib; {
homepage = https://maunium.net/go/gomuks/;
homepage = "https://maunium.net/go/gomuks/";
description = "A terminal based Matrix client written in Go";
license = licenses.gpl3;
maintainers = with maintainers; [ tilpner ];