2021-01-21 17:00:13 +00:00
|
|
|
{lib, stdenv, fetchurl}:
|
2010-08-31 09:58:09 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-12-08 16:04:37 +00:00
|
|
|
version = "5.3.0";
|
2010-08-31 09:58:09 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
|
2021-12-08 16:04:37 +00:00
|
|
|
sha256 = "sha256-9HJZFsIs9RSWnvsVw8IHIz1kc5OD99QpVgOLePbK6Mg=";
|
2010-08-31 09:58:09 +00:00
|
|
|
};
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libosip2";
|
2011-01-13 22:36:07 +00:00
|
|
|
|
2010-08-31 09:58:09 +00:00
|
|
|
meta = {
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.lgpl21Plus;
|
2020-04-01 01:11:51 +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)";
|
2021-01-21 17:00:13 +00:00
|
|
|
maintainers = with lib.maintainers; [ raskin ];
|
2021-03-12 05:19:17 +00:00
|
|
|
platforms = lib.platforms.all;
|
2010-08-31 09:58:09 +00:00
|
|
|
};
|
|
|
|
}
|