2021-01-21 17:00:13 +00:00
|
|
|
{lib, stdenv, fetchurl}:
|
2010-08-31 10:58:09 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-11-19 08:48:17 +00:00
|
|
|
version = "5.2.0";
|
2010-08-31 10:58:09 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
|
2020-11-19 08:48:17 +00:00
|
|
|
sha256 = "0xdk3cszkzb8nb757gl47slrr13mf6xz43ab4k343fv8llp8pd2g";
|
2010-08-31 10:58:09 +01:00
|
|
|
};
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libosip2";
|
2011-01-13 22:36:07 +00:00
|
|
|
|
2010-08-31 10:58:09 +01:00
|
|
|
meta = {
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.lgpl21Plus;
|
2020-04-01 02:11:51 +01: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 ];
|
|
|
|
platforms = lib.platforms.linux;
|
2014-09-02 10:25:05 +01:00
|
|
|
inherit version;
|
2010-08-31 10:58:09 +01:00
|
|
|
};
|
|
|
|
}
|