about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorTim Steinbach <NeQuissimus@users.noreply.github.com>2016-11-04 23:05:10 -0400
committerGitHub <noreply@github.com>2016-11-04 23:05:10 -0400
commitc86624c3db5243baa29857f541ebbc2015b50881 (patch)
tree773ac680ec716d8336b1350c6fbcf432dd587448 /pkgs/applications/networking
parent85cf3b7418c5b927624a3b15ec8c3c9a99e061f4 (diff)
parent7a372f0be701f8c8dcbeec0eedf5918e69498bf4 (diff)
downloadnixlib-c86624c3db5243baa29857f541ebbc2015b50881.tar
nixlib-c86624c3db5243baa29857f541ebbc2015b50881.tar.gz
nixlib-c86624c3db5243baa29857f541ebbc2015b50881.tar.bz2
nixlib-c86624c3db5243baa29857f541ebbc2015b50881.tar.lz
nixlib-c86624c3db5243baa29857f541ebbc2015b50881.tar.xz
nixlib-c86624c3db5243baa29857f541ebbc2015b50881.tar.zst
nixlib-c86624c3db5243baa29857f541ebbc2015b50881.zip
Merge pull request #20142 from NeQuissimus/dead_packages
Dead packages (Round 1)
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/siproxd/cheaders.patch5
-rw-r--r--pkgs/applications/networking/siproxd/default.nix6
2 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/networking/siproxd/cheaders.patch b/pkgs/applications/networking/siproxd/cheaders.patch
index 53c4813cc335..69a3e3287371 100644
--- a/pkgs/applications/networking/siproxd/cheaders.patch
+++ b/pkgs/applications/networking/siproxd/cheaders.patch
@@ -3,11 +3,12 @@ index 1904ab3..cb3624d 100644
 --- a/src/dejitter.c
 +++ b/src/dejitter.c
 @@ -22,6 +22,8 @@
- 
+
  #include <errno.h>
- 
+
 +#include <string.h>
 +#include <sys/time.h>
+ #include <unistd.h>
  #include <sys/types.h>
  #include <sys/socket.h>
  #include <netinet/in.h>
diff --git a/pkgs/applications/networking/siproxd/default.nix b/pkgs/applications/networking/siproxd/default.nix
index 69ebab78f947..14ed2587e636 100644
--- a/pkgs/applications/networking/siproxd/default.nix
+++ b/pkgs/applications/networking/siproxd/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, libosip }:
 
 stdenv.mkDerivation rec {
-  name = "siproxd-0.8.1";
-  
+  name = "siproxd-0.8.2";
+
   src = fetchurl {
     url = "mirror://sourceforge/siproxd/${name}.tar.gz";
-    sha256 = "1bcxl0h5nc28m8lcdhpbl5yc93w98xm53mfzrf04knsvmx7z0bfz";
+    sha256 = "1l6cyxxhra825jiiw9npa7jrbfgbyfpk4966cqkrw66cn28y8v2j";
   };
 
   patches = [ ./cheaders.patch ];