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

32 lines
998 B
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}";
2017-07-09 17:32:52 +00:00
version = "2.6";
src = fetchurl {
2016-08-29 16:22:34 +00:00
url = "http://www.pjsip.org/release/${version}/pjproject-${version}.tar.bz2";
2017-07-09 17:32:52 +00:00
sha256 = "1d67c58jn22f7h6smkykk5vwl3sqpc7xi2vm3j3lbn3lq6hisnig";
};
2016-08-29 16:22:34 +00:00
buildInputs = [ openssl libsamplerate alsaLib ];
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;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}