mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
Adding pjsip (pjproject-1.8)
svn path=/nixpkgs/trunk/; revision=25531
This commit is contained in:
parent
ac677a524b
commit
971e6c9233
18
pkgs/applications/networking/pjsip/default.nix
Normal file
18
pkgs/applications/networking/pjsip/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{stdenv, fetchurl, openssl, libsamplerate}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pjsip-1.8.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.pjsip.org/release/1.8.10/pjproject-1.8.10.tar.bz2;
|
||||
sha256 = "1v2mgbgzn7d3msb406jmg69ms97a0rqg58asykx71dmjipbaiqc0";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl libsamplerate ];
|
||||
|
||||
meta = {
|
||||
description = "SIP stack and media stack for presence, im, and multimedia communication";
|
||||
homepage = http://pjsip.org/;
|
||||
license = "GPLv2+";
|
||||
};
|
||||
}
|
@ -7453,6 +7453,8 @@ let
|
||||
|
||||
pgf2 = callPackage ../misc/tex/pgf/2.x.nix { };
|
||||
|
||||
pjsip = callPackage ../applications/networking/pjsip { };
|
||||
|
||||
polytable = callPackage ../misc/tex/polytable { };
|
||||
|
||||
psi = newScope pkgs.kde45 ../applications/networking/instant-messengers/psi { };
|
||||
|
Loading…
Reference in New Issue
Block a user