summary refs log tree commit diff
path: root/pkgs/applications/networking/pjsip
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-27 09:58:34 -0800
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-02-28 14:24:00 +0000
commit1ef6ce59b419d4e89cf8aae015f4eaee200f8004 (patch)
tree1575bac0378dfca44bf4a44fe581a99b142aa316 /pkgs/applications/networking/pjsip
parent2fbcc8634c39c24e535a382213a52c12c7cd2282 (diff)
downloadnixpkgs-1ef6ce59b419d4e89cf8aae015f4eaee200f8004.tar
nixpkgs-1ef6ce59b419d4e89cf8aae015f4eaee200f8004.tar.gz
nixpkgs-1ef6ce59b419d4e89cf8aae015f4eaee200f8004.tar.bz2
nixpkgs-1ef6ce59b419d4e89cf8aae015f4eaee200f8004.tar.lz
nixpkgs-1ef6ce59b419d4e89cf8aae015f4eaee200f8004.tar.xz
nixpkgs-1ef6ce59b419d4e89cf8aae015f4eaee200f8004.tar.zst
nixpkgs-1ef6ce59b419d4e89cf8aae015f4eaee200f8004.zip
pjsip: 2.7.1 -> 2.7.2
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/3wqj8kyahgi1r25wp8vfhhsg0m1mzpkx-pjsip-2.7.2/bin/pjsua -h` got 0 exit code
- ran `/nix/store/3wqj8kyahgi1r25wp8vfhhsg0m1mzpkx-pjsip-2.7.2/bin/pjsua --help` got 0 exit code
- ran `/nix/store/3wqj8kyahgi1r25wp8vfhhsg0m1mzpkx-pjsip-2.7.2/bin/pjsua help` got 0 exit code
- ran `/nix/store/3wqj8kyahgi1r25wp8vfhhsg0m1mzpkx-pjsip-2.7.2/bin/pjsua -V` and found version 2.7.2
- ran `/nix/store/3wqj8kyahgi1r25wp8vfhhsg0m1mzpkx-pjsip-2.7.2/bin/pjsua -v` and found version 2.7.2
- ran `/nix/store/3wqj8kyahgi1r25wp8vfhhsg0m1mzpkx-pjsip-2.7.2/bin/pjsua --version` and found version 2.7.2
- ran `/nix/store/3wqj8kyahgi1r25wp8vfhhsg0m1mzpkx-pjsip-2.7.2/bin/pjsua version` and found version 2.7.2
- ran `/nix/store/3wqj8kyahgi1r25wp8vfhhsg0m1mzpkx-pjsip-2.7.2/bin/pjsua -h` and found version 2.7.2
- ran `/nix/store/3wqj8kyahgi1r25wp8vfhhsg0m1mzpkx-pjsip-2.7.2/bin/pjsua --help` and found version 2.7.2
- ran `/nix/store/3wqj8kyahgi1r25wp8vfhhsg0m1mzpkx-pjsip-2.7.2/bin/pjsua help` and found version 2.7.2
- found 2.7.2 with grep in /nix/store/3wqj8kyahgi1r25wp8vfhhsg0m1mzpkx-pjsip-2.7.2
- found 2.7.2 in filename of file in /nix/store/3wqj8kyahgi1r25wp8vfhhsg0m1mzpkx-pjsip-2.7.2

cc "@viric @olynch"
Diffstat (limited to 'pkgs/applications/networking/pjsip')
-rw-r--r--pkgs/applications/networking/pjsip/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/pjsip/default.nix b/pkgs/applications/networking/pjsip/default.nix
index b4328723027..2a4991b9318 100644
--- a/pkgs/applications/networking/pjsip/default.nix
+++ b/pkgs/applications/networking/pjsip/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   name = "pjsip-${version}";
-  version = "2.7.1";
+  version = "2.7.2";
 
   src = fetchurl {
     url = "http://www.pjsip.org/release/${version}/pjproject-${version}.tar.bz2";
-    sha256 = "09ii5hgl5s7grx4fiimcl3s77i385h7b3kwpfa2q0arbl1ibryjr";
+    sha256 = "0wiph6g51wanzwjjrpwsz63amgvly8g08jz033gnwqmppa584b4w";
   };
 
   buildInputs = [ openssl libsamplerate alsaLib ];