about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/telepathy/telepathy-gabble/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/telepathy/telepathy-gabble/default.nix')
-rw-r--r--pkgs/applications/networking/instant-messengers/telepathy/telepathy-gabble/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/telepathy/telepathy-gabble/default.nix b/pkgs/applications/networking/instant-messengers/telepathy/telepathy-gabble/default.nix
new file mode 100644
index 0000000000000..154057b9377e4
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/telepathy/telepathy-gabble/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, pkgconfig, libxslt, telepathy_glib, libxml2, dbus_glib
+, sqlite, libsoup, libnice, gnutls }:
+
+stdenv.mkDerivation rec {
+  name = "telepathy-gabble-0.15.4";
+
+  src = fetchurl {
+    url = "${meta.homepage}/releases/telepathy-gabble/${name}.tar.gz";
+    sha256 = "0rgqxsdcxds0ljcc01f9ifav26y80p4my37wqzkicr9hmv54h98s";
+  };
+
+  buildNativeInputs = [pkgconfig libxslt];
+  buildInputs = [ libxml2 dbus_glib sqlite libsoup libnice telepathy_glib gnutls ];
+
+  configureFlags = "--with-ca-certificates=/etc/ca-bundle.crt";
+  
+  meta = {
+    homepage = http://telepathy.freedesktop.org;
+  };
+}