3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/instant-messengers/xmpp-client/default.nix

26 lines
660 B
Nix
Raw Normal View History

2016-09-16 17:53:56 +01:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
2016-06-05 09:18:42 +01:00
buildGoPackage rec {
pname = "xmpp-client";
version = "20160916-${stdenv.lib.strings.substring 0 7 rev}";
rev = "abbf9020393e8caae3e8996a16ce48446e31cf0e";
2016-06-05 09:18:42 +01:00
goPackagePath = "github.com/agl/xmpp-client";
2016-09-16 17:53:56 +01:00
src = fetchFromGitHub {
owner = "agl";
repo = "xmpp-client";
2016-06-05 09:18:42 +01:00
inherit rev;
sha256 = "0j9mfr208cachzm39i8b94v5qk9hws278vv2ms9ma4wn16wns81s";
2016-06-05 09:18:42 +01:00
};
goDeps = ./deps.nix;
2016-06-05 09:18:42 +01:00
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 ];
};
}