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

34 lines
873 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;
let
2014-12-03 17:51:52 +01:00
version = "1.0.12";
2014-06-18 23:18:31 +02:00
in
stdenv.mkDerivation rec {
name = "gloox-${version}";
src = fetchurl {
url = "http://camaya.net/download/gloox-${version}.tar.bz2";
2014-12-03 17:51:52 +01:00
sha256 = "1aa3pkg8yz6glg2273yl7310nkx1q31wkwbmmxwk3059k0p5l4k7";
2014-06-18 23:18:31 +02:00
};
buildInputs = [ ]
++ stdenv.lib.optional zlibSupport zlib
++ stdenv.lib.optional sslSupport openssl
++ stdenv.lib.optional idnSupport libidn;
meta = {
description = "A portable high-level Jabber/XMPP library for C++";
homepage = "http://camaya.net/gloox";
2014-09-30 11:35:10 +02:00
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
2014-06-18 23:18:31 +02:00
};
}