nixpkgs/pkgs/development/libraries/sofia-sip/default.nix

24 lines
732 B
Nix
Raw Normal View History

2021-05-10 14:04:03 +01:00
{ lib, stdenv, fetchFromGitHub, glib, openssl, pkg-config, autoreconfHook, SystemConfiguration }:
stdenv.mkDerivation rec {
pname = "sofia-sip";
2021-10-25 11:14:02 +01:00
version = "1.13.6";
src = fetchFromGitHub {
owner = "freeswitch";
repo = pname;
rev = "v${version}";
2021-10-25 11:14:02 +01:00
sha256 = "0b1gq499ksgsi16f5nf3dzbj6s8knwkiak5j810jzdfm7vkm0vvm";
};
2021-05-10 14:04:03 +01:00
buildInputs = [ glib openssl ] ++ lib.optional stdenv.isDarwin SystemConfiguration;
nativeBuildInputs = [ autoreconfHook pkg-config ];
meta = with lib; {
2018-10-27 14:29:37 +01:00
description = "Open-source SIP User-Agent library, compliant with the IETF RFC3261 specification";
homepage = "https://github.com/freeswitch/sofia-sip";
2021-05-10 14:04:03 +01:00
platforms = platforms.unix;
2018-10-27 14:29:37 +01:00
license = licenses.lgpl2;
};
}