9d39bd3e00
this last release on sourceforge is from 2011-03-11 freeswitch seems to be using this and working on it, so we're switching to their repo
24 lines
660 B
Nix
24 lines
660 B
Nix
{ stdenv, fetchFromGitHub, glib, openssl, pkgconfig, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sofia-sip";
|
|
version = "1.13.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "freeswitch";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "01xj30hhm1ji76igkqkn63rw42vvzq3azkr9qz6fy83iwqaybgyn";
|
|
};
|
|
|
|
buildInputs = [ glib openssl ];
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Open-source SIP User-Agent library, compliant with the IETF RFC3261 specification";
|
|
homepage = "https://github.com/freeswitch/sofia-sip";
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl2;
|
|
};
|
|
}
|