xmpp-client: init at dc9d6be

This commit is contained in:
codsl 2015-12-27 08:33:05 +00:00 committed by Jakob Gillich
parent 5acaa993f3
commit 7ff4973d79
2 changed files with 18 additions and 0 deletions

View file

@ -13863,6 +13863,8 @@ let
GConf2 = gnome2.GConf;
};
xmpp-client = go15Packages.xmpp-client.bin // { outputs = [ "bin" ]; };
libxpdf = callPackage ../applications/misc/xpdf/libxpdf.nix { };
xpra = callPackage ../tools/X11/xpra { inherit (texFunctions) fontsConf; };

View file

@ -3361,6 +3361,22 @@ let
sha256 = "0gljdfxqc94yb1kpqqrm5p94ph9dsxrzcixhdj6m92cwwa7z7p99";
};
xmpp-client = buildFromGitHub {
rev = "dc9d6be127f7c044ca0d56e5681c717a440ac177";
owner = "agl";
repo = "xmpp-client";
sha256 = "1zxh88mfzvq7fzf0536qy8kpcl82nw4jwrvyb9z6lhwk05gmi3vi";
disabled = isGo14;
buildInputs = [ crypto net ];
meta = with stdenv.lib; {
description = "An XMPP client with OTR support";
homepage = https://github.com/agl/xmpp-client;
license = licenses.bsd3;
maintainers = with maintainers; [ codsl ];
};
};
yaml-v1 = buildGoPackage rec {
name = "yaml-v1-${version}";
version = "git-2015-05-01";