2013-06-29 14:50:56 +00:00
|
|
|
{stdenv, fetchurl, libosip, openssl, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "3.6.0";
|
|
|
|
src = fetchurl {
|
2013-07-14 02:23:06 +00:00
|
|
|
url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
|
2013-06-29 14:50:56 +00:00
|
|
|
sha256 = "0r1mj8x5991bgwf03bx1ajn5kbbmw1136jabw2pn7dls9h41mnli";
|
|
|
|
};
|
|
|
|
name = "libexosip2-${version}";
|
|
|
|
|
|
|
|
buildInputs = [ libosip openssl pkgconfig ];
|
|
|
|
|
|
|
|
meta = {
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2013-06-29 14:50:56 +00:00
|
|
|
description = "Library that hides the complexity of using the SIP protocol";
|
|
|
|
};
|
|
|
|
}
|