about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/exosip/default.nix
blob: 10d390bd678d34a7d4a28cf3b69166048101bdc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, fetchurl, libosip, openssl, pkg-config }:

stdenv.mkDerivation rec {
 pname = "libexosip2";
 version = "5.3.0";

 src = fetchurl {
    url = "mirror://savannah/exosip/${pname}-${version}.tar.gz";
    sha256 = "sha256-W3gjmGQx6lztyfCV1pZKzpZvCTsq59CwhAR4i/zrycI=";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libosip openssl ];

  meta = with lib; {
    license = licenses.gpl2Plus;
    description = "Library that hides the complexity of using the SIP protocol";
    platforms = platforms.linux;
  };
}