nixpkgs/pkgs/development/libraries/gloox/default.nix

35 lines
840 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl
2014-06-18 21:18:31 +00:00
, zlibSupport ? true, zlib ? null
, sslSupport ? true, openssl ? null
, idnSupport ? true, libidn ? null
}:
assert zlibSupport -> zlib != null;
assert sslSupport -> openssl != null;
assert idnSupport -> libidn != null;
with lib;
2017-03-12 22:56:33 +00:00
2021-07-17 17:56:23 +00:00
stdenv.mkDerivation rec{
2019-08-13 21:52:01 +00:00
pname = "gloox";
2021-07-17 17:56:23 +00:00
version = "1.0.24";
2014-06-18 21:18:31 +00:00
src = fetchurl {
url = "https://camaya.net/download/gloox-${version}.tar.bz2";
2020-08-01 08:02:05 +00:00
sha256 = "1jgrd07qr9jvbb5hcmhrqz4w4lvwc51m30jls1fgxf1f5az6455f";
2014-06-18 21:18:31 +00:00
};
buildInputs = [ ]
2017-03-12 22:56:33 +00:00
++ optional zlibSupport zlib
++ optional sslSupport openssl
++ optional idnSupport libidn;
2014-06-18 21:18:31 +00:00
meta = {
description = "A portable high-level Jabber/XMPP library for C++";
homepage = "http://camaya.net/gloox";
2017-03-12 22:56:33 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ ];
2017-03-12 22:56:33 +00:00
platforms = platforms.unix;
2014-06-18 21:18:31 +00:00
};
}