ccrtp_1_8: remove, unmaintained and unused
This commit is contained in:
parent
77b6c3cd06
commit
0c64a9ad5b
@ -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
|
|
||||||
};
|
|
||||||
}
|
|
@ -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;
|
|
||||||
|
|
@ -10924,8 +10924,6 @@ in
|
|||||||
|
|
||||||
ccrtp = callPackage ../development/libraries/ccrtp { };
|
ccrtp = callPackage ../development/libraries/ccrtp { };
|
||||||
|
|
||||||
ccrtp_1_8 = callPackage ../development/libraries/ccrtp/1.8.nix { };
|
|
||||||
|
|
||||||
cctz = callPackage ../development/libraries/cctz { };
|
cctz = callPackage ../development/libraries/cctz { };
|
||||||
|
|
||||||
celt = callPackage ../development/libraries/celt {};
|
celt = callPackage ../development/libraries/celt {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user