ccrtp_1_8: remove, unmaintained and unused

This commit is contained in:
Franz Pletz 2019-12-26 16:24:39 +01:00
parent 77b6c3cd06
commit 0c64a9ad5b
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
3 changed files with 0 additions and 46 deletions

View File

@ -1,24 +0,0 @@
{ stdenv, fetchurl, openssl, pkgconfig, libgcrypt, commoncpp2 }:
stdenv.mkDerivation {
name = "ccrtp-1.8.0";
src = fetchurl {
url = mirror://gnu/ccrtp/ccrtp-1.8.0.tar.gz;
sha256 = "0wr4dandlfajhmg90nqyvwv61ikn9vdycji001310y3c4zfysprn";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl libgcrypt commoncpp2 ];
patches = [ ./gcc-4.6-fix.patch ];
meta = {
description = "GNU ccRTP is an implementation of RTP, the real-time transport protocol from the IETF";
homepage = https://www.gnu.org/software/ccrtp/;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
broken = true; # fails to compile with libgcrypt >= 1.6
};
}

View File

@ -1,20 +0,0 @@
diff -ubr ccrtp-1.8.0-orig/src/ccrtp/sources.h ccrtp-1.8.0/src/ccrtp/sources.h
--- ccrtp-1.8.0-orig/src/ccrtp/sources.h 2010-04-18 20:51:49.000000000 +0200
+++ ccrtp-1.8.0/src/ccrtp/sources.h 2012-07-07 11:42:50.961179016 +0200
@@ -45,6 +45,7 @@
#define CCXX_RTP_SOURCES_H_
#include <string>
+#include <cstddef>
#include <ccrtp/rtcppkt.h>
#ifdef CCXX_NAMESPACES
@@ -406,7 +407,7 @@
public:
typedef std::forward_iterator_tag iterator_category;
typedef Participant value_type;
- typedef ptrdiff_t difference_type;
+ typedef std::ptrdiff_t difference_type;
typedef const Participant* pointer;
typedef const Participant& reference;

View File

@ -10924,8 +10924,6 @@ in
ccrtp = callPackage ../development/libraries/ccrtp { };
ccrtp_1_8 = callPackage ../development/libraries/ccrtp/1.8.nix { };
cctz = callPackage ../development/libraries/cctz { };
celt = callPackage ../development/libraries/celt {};