about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/telepathy
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2017-12-18 04:58:40 +0100
committerJan Tojnar <jtojnar@gmail.com>2017-12-18 05:23:25 +0100
commita5b2c29761bce1da282c0371af1774e866a56a00 (patch)
tree7cb129d56b8c7f275e96451799274a17d50d0e23 /pkgs/applications/networking/instant-messengers/telepathy
parent76f9a4d7111a362035ee741cd08ea22a27bbd6bc (diff)
telepathy_mission_control: 5.16.3 → 5.16.4
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/telepathy')
-rw-r--r--pkgs/applications/networking/instant-messengers/telepathy/mission-control/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/applications/networking/instant-messengers/telepathy/mission-control/default.nix b/pkgs/applications/networking/instant-messengers/telepathy/mission-control/default.nix
index 87ae0210bdae4..82485de58fc1b 100644
--- a/pkgs/applications/networking/instant-messengers/telepathy/mission-control/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telepathy/mission-control/default.nix
@@ -1,18 +1,17 @@
-{ stdenv, fetchurl, pkgconfig, gnome3, telepathy_glib, libxslt, makeWrapper, upower }:
+{ stdenv, fetchurl, pkgconfig, gnome3, telepathy_glib, libxslt, makeWrapper }:
 
 stdenv.mkDerivation rec {
-  name = "${pname}-5.16.3";
+  name = "${pname}-5.16.4";
   pname = "telepathy-mission-control";
 
   src = fetchurl {
     url = "http://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
-    sha256 = "0zcbx69k0d3p2pjh3g7sa3q2zkd5xchxkqsmlfn3fwxaz0pmsmvi";
+    sha256 = "1jz6wwgsfxixha6ys2hbzbk5faqnj9kh2m5qdlgx5anqgandsscp";
   };
 
-  buildInputs = [ telepathy_glib telepathy_glib.python makeWrapper /*upower*/ ]; # ToDo: optional stuff missing
-  # 5.16.3 won't build with upower-0.99. Arch and Debian choose to disable it
+  buildInputs = [ telepathy_glib telepathy_glib.python ]; # ToDo: optional stuff missing
 
-  nativeBuildInputs = [ pkgconfig libxslt ];
+  nativeBuildInputs = [ pkgconfig libxslt makeWrapper ];
 
   doCheck = true;
 
@@ -24,8 +23,9 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "An account manager and channel dispatcher for the Telepathy framework";
-    homepage = http://telepathy.freedesktop.org/wiki/;
+    homepage = https://telepathy.freedesktop.org/components/telepathy-mission-control/;
     license = licenses.lgpl21;
+    maintainers = with maintainers; [ jtojnar ];
     platforms = platforms.unix;
   };
 }