storj-uplink: 1.119.15 -> 1.120.4 (#375732)
[NixPkgs.git] / pkgs / by-name / li / libexosip / package.nix
blob5927101d0bcc418244cb9ff835ae892db0690043
2   lib,
3   stdenv,
4   fetchurl,
5   libosip,
6   openssl,
7   pkg-config,
8 }:
10 stdenv.mkDerivation rec {
11   pname = "libexosip2";
12   version = "5.3.0";
14   src = fetchurl {
15     url = "mirror://savannah/exosip/${pname}-${version}.tar.gz";
16     sha256 = "sha256-W3gjmGQx6lztyfCV1pZKzpZvCTsq59CwhAR4i/zrycI=";
17   };
19   nativeBuildInputs = [ pkg-config ];
20   buildInputs = [
21     libosip
22     openssl
23   ];
25   meta = with lib; {
26     license = licenses.gpl2Plus;
27     description = "Library that hides the complexity of using the SIP protocol";
28     platforms = platforms.linux;
29   };