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

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

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