2010-08-31 02:58:09 -07:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-01 22:51:37 -07:00
|
|
|
version = "5.1.0";
|
2010-08-31 02:58:09 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
|
2019-04-01 22:51:37 -07:00
|
|
|
sha256 = "0igic785fh458ck33kxb6i34l7bzdp9zpfjy5dxrcvv5gacklms0";
|
2010-08-31 02:58:09 -07:00
|
|
|
};
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libosip2";
|
2011-01-13 14:36:07 -08:00
|
|
|
|
2010-08-31 02:58:09 -07:00
|
|
|
meta = {
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
2018-12-01 10:22:13 -08:00
|
|
|
homepage = https://www.gnu.org/software/osip/;
|
2011-01-13 14:36:07 -08:00
|
|
|
description = "The GNU oSIP library, an implementation of the Session Initiation Protocol (SIP)";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-09-02 02:25:05 -07:00
|
|
|
inherit version;
|
2010-08-31 02:58:09 -07:00
|
|
|
};
|
|
|
|
}
|