summary refs log tree commit diff
path: root/pkgs/development/libraries/gloox
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-12 17:56:33 -0500
committerndowens <ndowens04@gmail.com>2017-03-12 17:56:33 -0500
commita2d50e744a9bfaf61b7b72e4a8fb06327bf46753 (patch)
tree8c479eedc605e28cbb1d3a4776a5bae2e0c175e4 /pkgs/development/libraries/gloox
parent212efab7ace3b6a42f7955bf48286c78e218bfa0 (diff)
downloadnixpkgs-a2d50e744a9bfaf61b7b72e4a8fb06327bf46753.tar
nixpkgs-a2d50e744a9bfaf61b7b72e4a8fb06327bf46753.tar.gz
nixpkgs-a2d50e744a9bfaf61b7b72e4a8fb06327bf46753.tar.bz2
nixpkgs-a2d50e744a9bfaf61b7b72e4a8fb06327bf46753.tar.lz
nixpkgs-a2d50e744a9bfaf61b7b72e4a8fb06327bf46753.tar.xz
nixpkgs-a2d50e744a9bfaf61b7b72e4a8fb06327bf46753.tar.zst
nixpkgs-a2d50e744a9bfaf61b7b72e4a8fb06327bf46753.zip
gloox: 1.0.14 -> 1.0.20
Diffstat (limited to 'pkgs/development/libraries/gloox')
-rw-r--r--pkgs/development/libraries/gloox/default.nix20
1 files changed, 11 insertions, 9 deletions
diff --git a/pkgs/development/libraries/gloox/default.nix b/pkgs/development/libraries/gloox/default.nix
index 12460f4f2d2..9ce47ec2f1a 100644
--- a/pkgs/development/libraries/gloox/default.nix
+++ b/pkgs/development/libraries/gloox/default.nix
@@ -8,27 +8,29 @@ assert zlibSupport -> zlib != null;
 assert sslSupport -> openssl != null;
 assert idnSupport -> libidn != null;
 
+with stdenv.lib;
+
 let
-  version = "1.0.14";
+  version = "1.0.20";
 in
 stdenv.mkDerivation rec {
   name = "gloox-${version}";
 
   src = fetchurl {
     url = "http://camaya.net/download/gloox-${version}.tar.bz2";
-    sha256 = "0h9r4382qv0vqc91x1qz1nivxw1r2l874s1kl0bskzm9dyk742sj";
+    sha256 = "1a6yhs42wcdm8az3983m3lx4d9296bw0amz5v3b4012g1xn0hhq2";
   };
 
   buildInputs = [ ]
-    ++ stdenv.lib.optional zlibSupport zlib
-    ++ stdenv.lib.optional sslSupport openssl
-    ++ stdenv.lib.optional idnSupport libidn;
+    ++ optional zlibSupport zlib
+    ++ optional sslSupport openssl
+    ++ optional idnSupport libidn;
 
   meta = {
     description = "A portable high-level Jabber/XMPP library for C++";
-    homepage = "http://camaya.net/gloox";
-    license = stdenv.lib.licenses.gpl3;
-    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
-    platforms = with stdenv.lib.platforms; unix;
+    homepage = http://camaya.net/gloox;
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ fuuzetsu ];
+    platforms = platforms.unix;
   };
 }