mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
f909502274
Fixes CVE-2022-41550 https://git.savannah.gnu.org/cgit/osip.git/commit/?id=103d28ad799436b8a53fd8671428b25b0c08b8a0
18 lines
544 B
Nix
18 lines
544 B
Nix
{lib, stdenv, fetchurl}:
|
|
stdenv.mkDerivation rec {
|
|
version = "5.3.1";
|
|
src = fetchurl {
|
|
url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
|
|
sha256 = "sha256-/oL+hBYIJmrBWlwRGCFtoAxVTVAG4odaisN1Kx5q3Hk=";
|
|
};
|
|
pname = "libosip2";
|
|
|
|
meta = {
|
|
license = lib.licenses.lgpl21Plus;
|
|
homepage = "https://www.gnu.org/software/osip/";
|
|
description = "The GNU oSIP library, an implementation of the Session Initiation Protocol (SIP)";
|
|
maintainers = with lib.maintainers; [ raskin ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|