aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/exosip
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-06-29 16:50:56 +0200
committerLluís Batlle i Rossell <viric@viric.name>2013-06-29 16:59:08 +0200
commit169c8ce3f700482802de5606e72911ba9446e483 (patch)
tree429afacd7bf5d64ff40a34b485e04ca30ec5d6ea /pkgs/development/libraries/exosip
parent26e9afaa282a534f25fd0b028724987c7c0440bd (diff)
Linphone 3.6.1
Lots of updates and new/old libs to get the latest linphone It segfaults on running.
Diffstat (limited to 'pkgs/development/libraries/exosip')
-rw-r--r--pkgs/development/libraries/exosip/3.x.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/exosip/3.x.nix b/pkgs/development/libraries/exosip/3.x.nix
new file mode 100644
index 000000000000..d850618ecdf9
--- /dev/null
+++ b/pkgs/development/libraries/exosip/3.x.nix
@@ -0,0 +1,17 @@
+{stdenv, fetchurl, libosip, openssl, pkgconfig }:
+
+stdenv.mkDerivation rec {
+ version = "3.6.0";
+ src = fetchurl {
+ url = "http://download.savannah.gnu.org/releases/exosip/libeXosip2-${version}.tar.gz";
+ sha256 = "0r1mj8x5991bgwf03bx1ajn5kbbmw1136jabw2pn7dls9h41mnli";
+ };
+ name = "libexosip2-${version}";
+
+ buildInputs = [ libosip openssl pkgconfig ];
+
+ meta = {
+ license = "GPLv2+";
+ description = "Library that hides the complexity of using the SIP protocol";
+ };
+}