2011-01-13 20:49:58 +00:00
|
|
|
{stdenv, fetchurl, libosip, openssl, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-06-29 14:30:05 +01:00
|
|
|
version = "4.0.0";
|
2011-01-13 20:49:58 +00:00
|
|
|
src = fetchurl {
|
2013-07-14 03:23:06 +01:00
|
|
|
url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
|
2013-06-29 14:30:05 +01:00
|
|
|
sha256 = "1rdjr3x7s992w004cqf4xji1522an9rpzsr9wvyhp685khmahrsj";
|
2011-01-13 20:49:58 +00:00
|
|
|
};
|
|
|
|
name = "libexosip2-${version}";
|
|
|
|
|
|
|
|
buildInputs = [ libosip openssl pkgconfig ];
|
|
|
|
|
|
|
|
meta = {
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2011-01-13 20:49:58 +00:00
|
|
|
description = "Library that hides the complexity of using the SIP protocol";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-01-13 20:49:58 +00:00
|
|
|
};
|
|
|
|
}
|