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

37 lines
867 B
Nix
Raw Normal View History

2014-06-18 23:18:31 +02:00
{ stdenv, fetchurl
, zlibSupport ? true, zlib ? null
, sslSupport ? true, openssl ? null
, idnSupport ? true, libidn ? null
}:
assert zlibSupport -> zlib != null;
assert sslSupport -> openssl != null;
assert idnSupport -> libidn != null;
2017-03-12 23:56:33 +01:00
with stdenv.lib;
2014-06-18 23:18:31 +02:00
let
version = "1.0.21";
2014-06-18 23:18:31 +02:00
in
stdenv.mkDerivation rec {
name = "gloox-${version}";
src = fetchurl {
url = "https://camaya.net/download/gloox-${version}.tar.bz2";
sha256 = "1k57qgif1yii515m6jaqaibkdysfab6394bpawd2l67321f1a4rw";
2014-06-18 23:18:31 +02:00
};
buildInputs = [ ]
2017-03-12 23:56:33 +01:00
++ optional zlibSupport zlib
++ optional sslSupport openssl
++ optional idnSupport libidn;
2014-06-18 23:18:31 +02:00
meta = {
description = "A portable high-level Jabber/XMPP library for C++";
2017-03-12 23:56:33 +01:00
homepage = http://camaya.net/gloox;
license = licenses.gpl3;
maintainers = with maintainers; [ fuuzetsu ];
platforms = platforms.unix;
2014-06-18 23:18:31 +02:00
};
}