1{lib, stdenv, fetchurl}:
2stdenv.mkDerivation rec {
3 version = "5.3.1";
4 src = fetchurl {
5 url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
6 sha256 = "sha256-/oL+hBYIJmrBWlwRGCFtoAxVTVAG4odaisN1Kx5q3Hk=";
7 };
8 pname = "libosip2";
9
10 meta = {
11 license = lib.licenses.lgpl21Plus;
12 homepage = "https://www.gnu.org/software/osip/";
13 description = "The GNU oSIP library, an implementation of the Session Initiation Protocol (SIP)";
14 maintainers = with lib.maintainers; [ raskin ];
15 platforms = lib.platforms.all;
16 };
17}