about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/linphone
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-14 15:41:44 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-14 15:41:44 +0000
commit4874ff11441a76378572e9dcfd19c6ba86c8879c (patch)
tree14b36d719b4068d9ea90f351429c460ce89a242e /pkgs/applications/networking/instant-messengers/linphone
parentdc2d99ec96cb81763a5752a31d2718f7cff736ca (diff)
Move some IM clients to instant-messengers/
svn path=/nixpkgs/trunk/; revision=33065
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/linphone')
-rw-r--r--pkgs/applications/networking/instant-messengers/linphone/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/linphone/default.nix b/pkgs/applications/networking/instant-messengers/linphone/default.nix
new file mode 100644
index 0000000000000..04e119afdb142
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/linphone/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, intltool, pkgconfig, gtk, libglade, libosip, libexosip
+, speex, readline, mediastreamer }:
+        
+stdenv.mkDerivation rec {
+  name = "linphone-3.5.0";
+
+  src = fetchurl {
+    url = "mirror://savannah/linphone/3.5.x/sources/${name}.tar.gz";
+    sha256 = "1jrgsyx2mn6y50hjfx79fzqhp42r78cjr63w3bfjdl258zy2f6ix";
+  };
+
+  buildInputs = [ gtk libglade libosip libexosip readline mediastreamer speex ];
+
+  buildNativeInputs = [ intltool pkgconfig ];
+
+  configureFlags = "--enable-external-ortp --enable-external-mediastreamer";
+
+  meta = {
+    homepage = http://www.linphone.org/;
+    description = "Open Source video SIP softphone";
+    license = "GPLv2+";
+    platforms = stdenv.lib.platforms.gnu;
+  };
+}