nixpkgs/pkgs/applications/networking/instant-messengers/xmpp-client/default.nix

26 lines
645 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2016-06-05 08:18:42 +00:00
buildGoPackage rec {
pname = "xmpp-client";
2021-01-15 05:42:41 +00:00
version = "20160916-${lib.strings.substring 0 7 rev}";
rev = "abbf9020393e8caae3e8996a16ce48446e31cf0e";
2016-06-05 08:18:42 +00:00
goPackagePath = "github.com/agl/xmpp-client";
2016-09-16 16:53:56 +00:00
src = fetchFromGitHub {
owner = "agl";
repo = "xmpp-client";
2016-06-05 08:18:42 +00:00
inherit rev;
sha256 = "0j9mfr208cachzm39i8b94v5qk9hws278vv2ms9ma4wn16wns81s";
2016-06-05 08:18:42 +00:00
};
goDeps = ./deps.nix;
2016-06-05 08:18:42 +00:00
meta = with lib; {
2016-06-05 08:18:42 +00:00
description = "An XMPP client with OTR support";
homepage = "https://github.com/agl/xmpp-client";
2016-06-05 08:18:42 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ codsl ];
};
}