linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / exosip / default.nix
blobf40dea19bb9d663b787f2991f86ecd41bcbfe09e
1 { lib, stdenv, fetchurl, libosip, openssl, pkg-config }:
3 stdenv.mkDerivation rec {
4  pname = "libexosip2";
5  version = "5.2.0";
7  src = fetchurl {
8     url = "mirror://savannah/exosip/${pname}-${version}.tar.gz";
9     sha256 = "09bj7cm6mk8yr68y5a09a625x10ql6an3zi4pj6y1jbkhpgqibp3";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ libosip openssl ];
15   meta = with lib; {
16     license = licenses.gpl2Plus;
17     description = "Library that hides the complexity of using the SIP protocol";
18     platforms = platforms.linux;
19   };