2011-01-13 21:49:58 +01:00
|
|
|
{stdenv, fetchurl, libosip, openssl, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-02-10 11:13:48 +01:00
|
|
|
version = "3.6.0";
|
2011-01-13 21:49:58 +01:00
|
|
|
src = fetchurl {
|
2012-02-10 11:13:48 +01:00
|
|
|
url = "http://download.savannah.gnu.org/releases/exosip/libeXosip2-${version}.tar.gz";
|
|
|
|
sha256 = "0r1mj8x5991bgwf03bx1ajn5kbbmw1136jabw2pn7dls9h41mnli";
|
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";
|
|
|
|
};
|
|
|
|
}
|