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

36 lines
1.0 KiB
Nix
Raw Normal View History

2016-08-29 16:22:34 +00:00
{ stdenv, fetchurl, openssl, libsamplerate, alsaLib }:
stdenv.mkDerivation rec {
2016-08-29 16:22:34 +00:00
name = "pjsip-${version}";
version = "2.7.2";
src = fetchurl {
2016-08-29 16:22:34 +00:00
url = "http://www.pjsip.org/release/${version}/pjproject-${version}.tar.bz2";
sha256 = "0wiph6g51wanzwjjrpwsz63amgvly8g08jz033gnwqmppa584b4w";
};
2016-08-29 16:22:34 +00:00
buildInputs = [ openssl libsamplerate alsaLib ];
2017-12-27 03:10:49 +00:00
preConfigure = ''
export LD=$CC
'';
postInstall = ''
mkdir -p $out/bin
cp pjsip-apps/bin/pjsua-* $out/bin/pjsua
mkdir -p $out/share/${name}/samples
cp pjsip-apps/bin/samples/*/* $out/share/${name}/samples
'';
# We need the libgcc_s.so.1 loadable (for pthread_cancel to work)
dontPatchELF = true;
meta = {
2016-08-29 16:22:34 +00:00
description = "A multimedia communication library written in C, implementing standard based protocols such as SIP, SDP, RTP, STUN, TURN, and ICE";
homepage = http://pjsip.org/;
license = stdenv.lib.licenses.gpl2Plus;
2017-12-27 03:10:49 +00:00
maintainers = with stdenv.lib.maintainers; [viric olynch];
platforms = with stdenv.lib.platforms; linux;
};
}