nixpkgs/pkgs/applications/networking/pjsip/default.nix

47 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, openssl, libsamplerate, alsaLib, AppKit }:
stdenv.mkDerivation rec {
pname = "pjsip";
2020-03-23 16:16:02 +00:00
version = "2.10";
2020-03-23 16:16:02 +00:00
src = fetchFromGitHub {
owner = pname;
repo = "pjproject";
rev = version;
sha256 = "1aklicpgwc88578k03i5d5cm5h8mfm7hmx8vfprchbmaa2p8f4z0";
};
2020-04-08 20:29:11 +01:00
patches = [
./fix-aarch64.patch
];
2019-07-06 04:01:43 +01:00
2020-04-08 20:29:11 +01:00
buildInputs = [ openssl libsamplerate ]
2021-01-15 05:42:41 +00:00
++ lib.optional stdenv.isLinux alsaLib
++ lib.optional stdenv.isDarwin AppKit;
2017-12-27 03:10:49 +00:00
preConfigure = ''
export LD=$CC
2020-04-08 20:29:11 +01:00
'' # Fixed on master, remove with 2.11
2021-01-15 05:42:41 +00:00
+ lib.optionalString stdenv.isDarwin ''
2020-04-08 20:29:11 +01:00
NIX_CFLAGS_COMPILE+=" -framework Security"
2017-12-27 03:10:49 +00:00
'';
postInstall = ''
mkdir -p $out/bin
cp pjsip-apps/bin/pjsua-* $out/bin/pjsua
mkdir -p $out/share/${pname}-${version}/samples
cp pjsip-apps/bin/samples/*/* $out/share/${pname}-${version}/samples
'';
# We need the libgcc_s.so.1 loadable (for pthread_cancel to work)
dontPatchELF = true;
meta = with lib; {
2016-08-29 17:22:34 +01:00
description = "A multimedia communication library written in C, implementing standard based protocols such as SIP, SDP, RTP, STUN, TURN, and ICE";
homepage = "https://pjsip.org/";
2020-04-08 20:29:11 +01:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ olynch ];
platforms = platforms.linux ++ platforms.darwin;
};
}