Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / osip / default.nix
blobf7cedc96b7c729bc92a1d9e59468dfbfeddc874b
1 {lib, stdenv, fetchurl}:
2 stdenv.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";
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   };