2012-03-29 18:33:32 +02:00
|
|
|
{ stdenv, fetchurl, glib, openssl, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "sofia-sip-1.12.11";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/sofia-sip/${name}.tar.gz";
|
|
|
|
sha256 = "10bwsdfijpbk9ahlfpk94kzdapxiahl9mljpgwghvq1630pbq09b";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ glib openssl ];
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-08-02 18:06:29 +02:00
|
|
|
|
2018-10-27 15:29:37 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Open-source SIP User-Agent library, compliant with the IETF RFC3261 specification";
|
|
|
|
homepage = http://sofia-sip.sourceforge.net/;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl2;
|
2016-08-02 18:06:29 +02:00
|
|
|
};
|
2012-03-29 18:33:32 +02:00
|
|
|
}
|