aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/exosip
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-01-13 20:49:58 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-01-13 20:49:58 +0000
commit3c282f5a317c511f994195916504642dbf836695 (patch)
tree4abfe5af5797c7c2ba0a1db2dc21cd99fa9760f9 /pkgs/development/libraries/exosip
parente6e51b2d83248a9b51bb0f3463f9419e4a20c6cd (diff)
Adding linphone
svn path=/nixpkgs/trunk/; revision=25545
Diffstat (limited to 'pkgs/development/libraries/exosip')
-rw-r--r--pkgs/development/libraries/exosip/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/exosip/default.nix b/pkgs/development/libraries/exosip/default.nix
new file mode 100644
index 000000000000..905b2648dbd3
--- /dev/null
+++ b/pkgs/development/libraries/exosip/default.nix
@@ -0,0 +1,17 @@
+{stdenv, fetchurl, libosip, openssl, pkgconfig }:
+
+stdenv.mkDerivation rec {
+ version = "3.5.0";
+ src = fetchurl {
+ url = http://download.savannah.gnu.org/releases/exosip/libeXosip2-3.5.0.tar.gz;
+ sha256 = "1z0s8qxxvyaksnnb9srfi3aipkkb7c1rsxdywl9xyxgnlri0w0a6";
+ };
+ name = "libexosip2-${version}";
+
+ buildInputs = [ libosip openssl pkgconfig ];
+
+ meta = {
+ license = "GPLv2+";
+ description = "Library that hides the complexity of using the SIP protocol";
+ };
+}