2016-08-29 18:22:34 +02:00
|
|
|
{ stdenv, fetchurl, openssl, libsamplerate, alsaLib }:
|
2011-01-13 10:23:40 +01:00
|
|
|
|
2011-01-16 15:58:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "pjsip";
|
2019-07-06 05:01:27 +02:00
|
|
|
version = "2.9";
|
2011-01-13 10:23:40 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-22 10:14:28 +02:00
|
|
|
url = "https://www.pjsip.org/release/${version}/pjproject-${version}.tar.bz2";
|
2019-07-06 05:01:27 +02:00
|
|
|
sha256 = "0dm6l8fypkimmzvld35zyykbg957cm5zb4ny3lchgv68amwfz1fi";
|
2011-01-13 10:23:40 +01:00
|
|
|
};
|
|
|
|
|
2019-07-06 05:01:43 +02:00
|
|
|
patches = [ ./fix-aarch64.patch ];
|
|
|
|
|
2016-08-29 18:22:34 +02:00
|
|
|
buildInputs = [ openssl libsamplerate alsaLib ];
|
2011-01-13 10:23:40 +01:00
|
|
|
|
2017-12-27 04:10:49 +01:00
|
|
|
preConfigure = ''
|
|
|
|
export LD=$CC
|
|
|
|
'';
|
|
|
|
|
2011-01-16 15:58:37 +01:00
|
|
|
postInstall = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/bin
|
2011-01-16 15:58:37 +01:00
|
|
|
cp pjsip-apps/bin/pjsua-* $out/bin/pjsua
|
2019-08-15 14:41:18 +02:00
|
|
|
mkdir -p $out/share/${pname}-${version}/samples
|
|
|
|
cp pjsip-apps/bin/samples/*/* $out/share/${pname}-${version}/samples
|
2011-01-16 15:58:37 +01:00
|
|
|
'';
|
|
|
|
|
2011-01-19 22:16:40 +01:00
|
|
|
# We need the libgcc_s.so.1 loadable (for pthread_cancel to work)
|
|
|
|
dontPatchELF = true;
|
|
|
|
|
2011-01-13 10:23:40 +01:00
|
|
|
meta = {
|
2016-08-29 18:22:34 +02:00
|
|
|
description = "A multimedia communication library written in C, implementing standard based protocols such as SIP, SDP, RTP, STUN, TURN, and ICE";
|
2019-04-22 10:14:28 +02:00
|
|
|
homepage = https://pjsip.org/;
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2018-07-22 21:50:19 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [olynch];
|
2011-01-16 15:58:37 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2011-01-13 10:23:40 +01:00
|
|
|
};
|
|
|
|
}
|