summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/network-protocol-xmpp/default.nix
blob: 910d2cc6774b5a2af5314f59b99ec272520a4227 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, gnuidn, gnutls, gsasl, libxmlSax, monadsTf, network, text
, transformers, xmlTypes
}:

cabal.mkDerivation (self: {
  pname = "network-protocol-xmpp";
  version = "0.4.5";
  sha256 = "1phnd9nygpc8gmyriwaqjnvygxi5zg4nx2i1m3vwwxql221420gg";
  buildDepends = [
    gnuidn gnutls gsasl libxmlSax monadsTf network text transformers
    xmlTypes
  ];
  meta = {
    homepage = "https://john-millikin.com/software/haskell-xmpp/";
    description = "Client library for the XMPP protocol";
    license = self.stdenv.lib.licenses.gpl3;
    platforms = self.ghc.meta.platforms;
  };
})