summary refs log tree commit diff
path: root/pkgs/development/libraries/ccrtp
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2019-12-26 16:24:39 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2019-12-26 16:24:39 +0100
commit0c64a9ad5b5dc6b0f1b0a2bf8f6e1d78408c5ba2 (patch)
treedc01c3751b66c0b3ff0fc15ad13e7181c650be7c /pkgs/development/libraries/ccrtp
parent77b6c3cd06a679140fb5a44f81f904497007f333 (diff)
downloadnixpkgs-0c64a9ad5b5dc6b0f1b0a2bf8f6e1d78408c5ba2.tar
nixpkgs-0c64a9ad5b5dc6b0f1b0a2bf8f6e1d78408c5ba2.tar.gz
nixpkgs-0c64a9ad5b5dc6b0f1b0a2bf8f6e1d78408c5ba2.tar.bz2
nixpkgs-0c64a9ad5b5dc6b0f1b0a2bf8f6e1d78408c5ba2.tar.lz
nixpkgs-0c64a9ad5b5dc6b0f1b0a2bf8f6e1d78408c5ba2.tar.xz
nixpkgs-0c64a9ad5b5dc6b0f1b0a2bf8f6e1d78408c5ba2.tar.zst
nixpkgs-0c64a9ad5b5dc6b0f1b0a2bf8f6e1d78408c5ba2.zip
ccrtp_1_8: remove, unmaintained and unused
Diffstat (limited to 'pkgs/development/libraries/ccrtp')
-rw-r--r--pkgs/development/libraries/ccrtp/1.8.nix24
-rw-r--r--pkgs/development/libraries/ccrtp/gcc-4.6-fix.patch20
2 files changed, 0 insertions, 44 deletions
diff --git a/pkgs/development/libraries/ccrtp/1.8.nix b/pkgs/development/libraries/ccrtp/1.8.nix
deleted file mode 100644
index db2d177b710..00000000000
--- a/pkgs/development/libraries/ccrtp/1.8.nix
+++ /dev/null
@@ -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
-  };
-}
diff --git a/pkgs/development/libraries/ccrtp/gcc-4.6-fix.patch b/pkgs/development/libraries/ccrtp/gcc-4.6-fix.patch
deleted file mode 100644
index 49d07a89e52..00000000000
--- a/pkgs/development/libraries/ccrtp/gcc-4.6-fix.patch
+++ /dev/null
@@ -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;
-