about summary refs log tree commit diff
path: root/pkgs/tools/video/rtmpdump/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/video/rtmpdump/default.nix')
-rw-r--r--pkgs/tools/video/rtmpdump/default.nix58
1 files changed, 0 insertions, 58 deletions
diff --git a/pkgs/tools/video/rtmpdump/default.nix b/pkgs/tools/video/rtmpdump/default.nix
deleted file mode 100644
index acb59fd21bdb..000000000000
--- a/pkgs/tools/video/rtmpdump/default.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-{ lib
-, stdenv
-, fetchgit
-, fetchpatch
-, zlib
-, gnutlsSupport ? false
-, gnutls
-, nettle
-, opensslSupport ? true
-, openssl
-}:
-
-assert (gnutlsSupport || opensslSupport);
-
-stdenv.mkDerivation {
-  pname = "rtmpdump";
-  version = "unstable-2021-02-19";
-
-  src = fetchgit {
-    url = "git://git.ffmpeg.org/rtmpdump";
-    # Currently the latest commit is used (a release has not been made since 2011, i.e. '2.4')
-    rev = "f1b83c10d8beb43fcc70a6e88cf4325499f25857";
-    sha256 = "0vchr0f0d5fi0zaa16jywva5db3x9dyws7clqaq32gwh5drbkvs0";
-  };
-
-  patches = [
-    # Fix build with OpenSSL 1.1
-    (fetchpatch {
-      url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-video/rtmpdump/files/rtmpdump-openssl-1.1.patch?id=1e7bef484f96e7647f5f0911d3c8caa48131c33b";
-      sha256 = "1wds98pk8qr7shkfl8k49iirxiwd972h18w84bamiqln29wv6ql1";
-    })
-  ];
-
-  makeFlags = [
-    "prefix=$(out)"
-    "CROSS_COMPILE=${stdenv.cc.targetPrefix}"
-  ]
-    ++ lib.optional gnutlsSupport "CRYPTO=GNUTLS"
-    ++ lib.optional opensslSupport "CRYPTO=OPENSSL"
-    ++ lib.optional stdenv.isDarwin "SYS=darwin"
-    ++ lib.optional stdenv.cc.isClang "CC=clang";
-
-  propagatedBuildInputs = [ zlib ]
-    ++ lib.optionals gnutlsSupport [ gnutls nettle ]
-    ++ lib.optional opensslSupport openssl;
-
-  outputs = [ "out" "dev" ];
-
-  separateDebugInfo = true;
-
-  meta = with lib; {
-    description = "Toolkit for RTMP streams";
-    homepage = "https://rtmpdump.mplayerhq.hu/";
-    license = licenses.gpl2Plus;
-    platforms = platforms.unix;
-    maintainers = with maintainers; [ codyopel ];
-  };
-}