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

Commits on May 16, 2018

  1. gomuks: init at 2018-05-16

    tilpner committed May 16, 2018
    Copy the full SHA
    c1efa89 View commit details

Commits on May 19, 2018

  1. Merge pull request #40510 from tilpner/gomuks-init

    gomuks: init at 2018-05-16
    matthewbauer authored May 19, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    bc35f54 View commit details
Showing with 25 additions and 0 deletions.
  1. +23 −0 pkgs/applications/networking/instant-messengers/gomuks/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
23 changes: 23 additions & 0 deletions pkgs/applications/networking/instant-messengers/gomuks/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ stdenv, buildGo110Package, fetchFromGitHub }:

buildGo110Package rec {
name = "gomuks-${version}";
version = "2018-05-16";

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

src = fetchFromGitHub {
owner = "tulir";
repo = "gomuks";
rev = "512ca88804268bf58a754e8a02be556f953db317";
sha256 = "1bpgjkpvqqks3ljw9s0hm5pgscjs4rjy8rfpl2444m4rbpz1xvmr";
};

meta = with stdenv.lib; {
homepage = https://maunium.net/go/gomuks/;
description = "A terminal based Matrix client written in Go";
license = licenses.gpl3;
maintainers = with maintainers; [ tilpner ];
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -15783,6 +15783,8 @@ with pkgs;

goldendict = libsForQt5.callPackage ../applications/misc/goldendict { };

gomuks = callPackage ../applications/networking/instant-messengers/gomuks { };

inherit (ocamlPackages) google-drive-ocamlfuse;

google-musicmanager = callPackage ../applications/audio/google-musicmanager { };