about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/exosip/default.nix
blob: f40dea19bb9d663b787f2991f86ecd41bcbfe09e (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.2.0";

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

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