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

stdenv.mkDerivation rec {
  name = "sofia-sip-1.12.11";

  src = fetchurl {
    url = "mirror://sourceforge/sofia-sip/${name}.tar.gz";
    sha256 = "10bwsdfijpbk9ahlfpk94kzdapxiahl9mljpgwghvq1630pbq09b";
  };

  buildInputs = [ glib openssl ];
  nativeBuildInputs = [ pkgconfig ];

  meta = with stdenv.lib; {
    description = "Open-source SIP User-Agent library, compliant with the IETF RFC3261 specification";
    homepage = "http://sofia-sip.sourceforge.net/";
    platforms = platforms.linux;
    license = licenses.lgpl2;
  };
}