summary refs log tree commit diff
path: root/pkgs/development/libraries/exosip/3.x.nix
blob: aa55a7f0d1dc2f116d8d260c49cb029825341ec1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, libosip, openssl, pkgconfig }:

stdenv.mkDerivation rec {
  version = "3.6.0";
  src = fetchurl {
    url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
    sha256 = "0r1mj8x5991bgwf03bx1ajn5kbbmw1136jabw2pn7dls9h41mnli";
  };
  name = "libexosip2-${version}";

  buildInputs = [ libosip openssl pkgconfig ];
      
  meta = {
    license = stdenv.lib.licenses.gpl2Plus;
    description = "Library that hides the complexity of using the SIP protocol";
    platforms = stdenv.lib.platforms.linux;
  };
}