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

stdenv.mkDerivation rec {
 name = "libexosip2-${version}";
 version = "4.1.0";
 
 src = fetchurl {
    url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
    sha256 = "17cna8kpc8nk1si419vgr6r42k2lda0rdk50vlxrw8rzg0xp2xrw";
  };
 
  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libosip openssl ];
      
  meta = with stdenv.lib; {
    license = licenses.gpl2Plus;
    description = "Library that hides the complexity of using the SIP protocol";
    platforms =platforms.linux;
  };
}