Adding linphone

svn path=/nixpkgs/trunk/; revision=25545
This commit is contained in:
Lluís Batlle i Rossell
2011-01-13 20:49:58 +00:00
parent e6e51b2d83
commit 3c282f5a31
4 changed files with 45 additions and 2 deletions
@@ -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";
};
}