1{stdenv, fetchurl, libosip, openssl, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 version = "4.0.0";
5 src = fetchurl {
6 url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
7 sha256 = "1rdjr3x7s992w004cqf4xji1522an9rpzsr9wvyhp685khmahrsj";
8 };
9 name = "libexosip2-${version}";
10
11 buildInputs = [ libosip openssl pkgconfig ];
12
13 meta = {
14 license = stdenv.lib.licenses.gpl2Plus;
15 description = "Library that hides the complexity of using the SIP protocol";
16 };
17}