2011-01-13 21:49:58 +01:00
|
|
|
{stdenv, fetchurl, libosip, openssl, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-12 20:44:58 +01:00
|
|
|
name = "libexosip2-${version}";
|
|
|
|
version = "4.1.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-14 04:23:06 +02:00
|
|
|
url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
|
2017-03-12 20:44:58 +01:00
|
|
|
sha256 = "17cna8kpc8nk1si419vgr6r42k2lda0rdk50vlxrw8rzg0xp2xrw";
|
2011-01-13 21:49:58 +01:00
|
|
|
};
|
2017-03-12 20:44:58 +01:00
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libosip openssl ];
|
2011-01-13 21:49:58 +01:00
|
|
|
|
2017-03-12 20:44:58 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.gpl2Plus;
|
2011-01-13 21:49:58 +01:00
|
|
|
description = "Library that hides the complexity of using the SIP protocol";
|
2017-03-12 20:44:58 +01:00
|
|
|
platforms =platforms.linux;
|
2011-01-13 21:49:58 +01:00
|
|
|
};
|
|
|
|
}
|