python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / sofia-sip / default.nix
blob6a54c2a80755d1e324dc949d9355739bd7cfaed0
1 { lib, stdenv, fetchFromGitHub, glib, openssl, pkg-config, autoreconfHook, SystemConfiguration }:
3 stdenv.mkDerivation rec {
4   pname = "sofia-sip";
5   version = "1.13.9";
7   src = fetchFromGitHub {
8     owner = "freeswitch";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-xF2LFbxGhA/gF7Z2LX3WYq3nXOLi0ARGGR4Dd3PCftk=";
12   };
14   buildInputs = [ glib openssl ] ++ lib.optional stdenv.isDarwin SystemConfiguration;
15   nativeBuildInputs = [ autoreconfHook pkg-config ];
17   meta = with lib; {
18     description = "Open-source SIP User-Agent library, compliant with the IETF RFC3261 specification";
19     homepage = "https://github.com/freeswitch/sofia-sip";
20     platforms = platforms.unix;
21     license = licenses.lgpl2;
22   };