aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/pjsip
diff options
context:
space:
mode:
authorLluĆ­s Batlle i Rossell <viric@vicerveza.homeunix.net>2011-01-13 09:23:40 +0000
committerLluĆ­s Batlle i Rossell <viric@vicerveza.homeunix.net>2011-01-13 09:23:40 +0000
commit971e6c9233208c81ca22bf34612c98543dc0d075 (patch)
tree186b9c57488343a0e170e082b59461ca96c01a66 /pkgs/applications/networking/pjsip
parentac677a524bbd94dbfdce53586d946119a9eee4ab (diff)
Adding pjsip (pjproject-1.8)
svn path=/nixpkgs/trunk/; revision=25531
Diffstat (limited to 'pkgs/applications/networking/pjsip')
-rw-r--r--pkgs/applications/networking/pjsip/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/applications/networking/pjsip/default.nix b/pkgs/applications/networking/pjsip/default.nix
new file mode 100644
index 00000000000..efe39d9710d
--- /dev/null
+++ b/pkgs/applications/networking/pjsip/default.nix
@@ -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+";
+ };
+}