2011-01-13 01:23:40 -08:00
|
|
|
{stdenv, fetchurl, openssl, libsamplerate}:
|
|
|
|
|
2011-01-16 06:58:37 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2013-06-29 01:19:26 -07:00
|
|
|
name = "pjsip-2.1";
|
2011-01-13 01:23:40 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-06-29 01:19:26 -07:00
|
|
|
url = http://www.pjsip.org/release/2.1/pjproject-2.1.tar.bz2;
|
|
|
|
md5 = "310eb63638dac93095f6a1fc8ee1f578";
|
2011-01-13 01:23:40 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl libsamplerate ];
|
|
|
|
|
2011-01-16 06:58:37 -08:00
|
|
|
postInstall = ''
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/bin
|
2011-01-16 06:58:37 -08:00
|
|
|
cp pjsip-apps/bin/pjsua-* $out/bin/pjsua
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/share/${name}/samples
|
2011-01-16 06:58:37 -08:00
|
|
|
cp pjsip-apps/bin/samples/*/* $out/share/${name}/samples
|
|
|
|
'';
|
|
|
|
|
2011-01-19 13:16:40 -08:00
|
|
|
# We need the libgcc_s.so.1 loadable (for pthread_cancel to work)
|
|
|
|
dontPatchELF = true;
|
|
|
|
|
2011-01-13 01:23:40 -08:00
|
|
|
meta = {
|
|
|
|
description = "SIP stack and media stack for presence, im, and multimedia communication";
|
|
|
|
homepage = http://pjsip.org/;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2011-01-16 06:58:37 -08:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2011-01-13 01:23:40 -08:00
|
|
|
};
|
|
|
|
}
|