about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/telepathy/idle
diff options
context:
space:
mode:
authorDamien Cassou <damien.cassou@gmail.com>2014-12-08 15:59:06 +0100
committerLuca Bruno <lucabru@src.gnome.org>2014-12-12 15:12:19 +0100
commitbc789064d8d13ff14f65161d8d4dcc51667b7248 (patch)
tree4947c116a5ff03a6c33416e5cb8025cb323f1c69 /pkgs/applications/networking/instant-messengers/telepathy/idle
parent40bbc1806a2f26592993d038da89667d6fd6b161 (diff)
downloadnixlib-bc789064d8d13ff14f65161d8d4dcc51667b7248.tar
nixlib-bc789064d8d13ff14f65161d8d4dcc51667b7248.tar.gz
nixlib-bc789064d8d13ff14f65161d8d4dcc51667b7248.tar.bz2
nixlib-bc789064d8d13ff14f65161d8d4dcc51667b7248.tar.lz
nixlib-bc789064d8d13ff14f65161d8d4dcc51667b7248.tar.xz
nixlib-bc789064d8d13ff14f65161d8d4dcc51667b7248.tar.zst
nixlib-bc789064d8d13ff14f65161d8d4dcc51667b7248.zip
Package for the Polari IRC app
This commit includes a patch to telepathy's derivation, written by
Lethalman. This patch makes public the Telepathy's dependency to
dbus_glib. This patch will become problematic with the next pkgconfig
upgrade but this upgrade should make the patch irrelevant. See these 2
links for more information:
- https://bugs.freedesktop.org/show_bug.cgi?id=15199
- https://bugzilla.redhat.com/show_bug.cgi?id=436773

Modified by Luca Bruno:
- Moved telepathy_idle to propagatedUserEnvPkgs
- Added myself to maintainers
- Enable parallel building
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/telepathy/idle')
-rw-r--r--pkgs/applications/networking/instant-messengers/telepathy/idle/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/telepathy/idle/default.nix b/pkgs/applications/networking/instant-messengers/telepathy/idle/default.nix
new file mode 100644
index 000000000000..16a31f6f3ba1
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/telepathy/idle/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, glib, pkgconfig, dbus_glib, telepathy_glib, libxslt }:
+
+stdenv.mkDerivation rec {
+  pname = "telepathy-idle";
+  version = "0.2.0";
+  name = "${pname}-${version}";
+
+  src = fetchurl {
+    url = "http://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
+    sha256 = "1argdzbif1vdmwp5vqbgkadq9ancjmgdm2ncp0qfckni715ss4rh";
+  };
+
+  buildInputs = [ pkgconfig glib telepathy_glib dbus_glib libxslt ];
+
+  meta = {
+    description = "IRC connection manager for the Telepathy framework";
+    license = stdenv.lib.licenses.lgpl21;
+    platforms = stdenv.lib.platforms.gnu;
+  };
+}