Making pjsip install the console User Agent (pjsua), that helps a lot testing SIP.

svn path=/nixpkgs/trunk/; revision=25587
This commit is contained in:
Lluís Batlle i Rossell 2011-01-16 14:58:37 +00:00
parent b8e6a6ef5a
commit 40012b3588

View file

@ -1,6 +1,6 @@
{stdenv, fetchurl, openssl, libsamplerate}:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
name = "pjsip-1.8.10";
src = fetchurl {
@ -10,9 +10,18 @@ stdenv.mkDerivation {
buildInputs = [ openssl libsamplerate ];
postInstall = ''
ensureDir $out/bin
cp pjsip-apps/bin/pjsua-* $out/bin/pjsua
ensureDir $out/share/${name}/samples
cp pjsip-apps/bin/samples/*/* $out/share/${name}/samples
'';
meta = {
description = "SIP stack and media stack for presence, im, and multimedia communication";
homepage = http://pjsip.org/;
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}