2011-01-13 21:49:58 +01:00
|
|
|
{stdenv, fetchurl, libosip, openssl, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-06-29 15:30:05 +02:00
|
|
|
version = "4.0.0";
|
2011-01-13 21:49:58 +01:00
|
|
|
src = fetchurl {
|
2013-07-14 04:23:06 +02:00
|
|
|
url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
|
2013-06-29 15:30:05 +02:00
|
|
|
sha256 = "1rdjr3x7s992w004cqf4xji1522an9rpzsr9wvyhp685khmahrsj";
|
2011-01-13 21:49:58 +01:00
|
|
|
};
|
|
|
|
name = "libexosip2-${version}";
|
|
|
|
|
|
|
|
buildInputs = [ libosip openssl pkgconfig ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
license = "GPLv2+";
|
|
|
|
description = "Library that hides the complexity of using the SIP protocol";
|
|
|
|
};
|
|
|
|
}
|