depot/third_party/nixpkgs/pkgs/development/libraries/osip/default.nix
Default email c594a97518 Project import generated by Copybara.
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
2022-10-21 20:38:19 +02:00

17 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;
};
}