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

38 lines
1.1 KiB
Nix
Raw Normal View History

2016-08-29 18:22:34 +02:00
{ stdenv, fetchurl, openssl, libsamplerate, alsaLib }:
stdenv.mkDerivation rec {
pname = "pjsip";
2019-07-06 05:01:27 +02:00
version = "2.9";
src = fetchurl {
url = "https://www.pjsip.org/release/${version}/pjproject-${version}.tar.bz2";
2019-07-06 05:01:27 +02:00
sha256 = "0dm6l8fypkimmzvld35zyykbg957cm5zb4ny3lchgv68amwfz1fi";
};
2019-07-06 05:01:43 +02:00
patches = [ ./fix-aarch64.patch ];
2016-08-29 18:22:34 +02:00
buildInputs = [ openssl libsamplerate alsaLib ];
2017-12-27 04:10:49 +01:00
preConfigure = ''
export LD=$CC
'';
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 = {
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";
homepage = https://pjsip.org/;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [olynch];
platforms = with stdenv.lib.platforms; linux;
};
}