2021-01-21 09:00:13 -08:00
|
|
|
{lib, stdenv, fetchurl}:
|
2010-08-31 02:58:09 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2020-11-19 00:48:17 -08:00
|
|
|
version = "5.2.0";
|
2010-08-31 02:58:09 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
|
2020-11-19 00:48:17 -08:00
|
|
|
sha256 = "0xdk3cszkzb8nb757gl47slrr13mf6xz43ab4k343fv8llp8pd2g";
|
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 = {
|
2021-01-21 09:00:13 -08:00
|
|
|
license = lib.licenses.lgpl21Plus;
|
2020-03-31 18:11:51 -07: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)";
|
2021-01-21 09:00:13 -08:00
|
|
|
maintainers = with lib.maintainers; [ raskin ];
|
2021-03-11 21:19:17 -08:00
|
|
|
platforms = lib.platforms.all;
|
2014-09-02 02:25:05 -07:00
|
|
|
inherit version;
|
2010-08-31 02:58:09 -07:00
|
|
|
};
|
|
|
|
}
|