2010-08-31 10:58:09 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-02 06:51:37 +01:00
|
|
|
version = "5.1.0";
|
2010-08-31 10:58:09 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
|
2019-04-02 06:51:37 +01:00
|
|
|
sha256 = "0igic785fh458ck33kxb6i34l7bzdp9zpfjy5dxrcvv5gacklms0";
|
2010-08-31 10:58:09 +01:00
|
|
|
};
|
|
|
|
name = "libosip2-${version}";
|
2011-01-13 22:36:07 +00:00
|
|
|
|
2010-08-31 10:58:09 +01:00
|
|
|
meta = {
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://www.gnu.org/software/osip/;
|
2011-01-13 22:36:07 +00: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 10:25:05 +01:00
|
|
|
inherit version;
|
2010-08-31 10:58:09 +01:00
|
|
|
};
|
|
|
|
}
|