summary refs log tree commit diff
path: root/pkgs/tools/video/rtmpdump
diff options
context:
space:
mode:
authorBen Wolsieffer <benwolsieffer@gmail.com>2019-08-30 23:43:51 -0400
committerBen Wolsieffer <benwolsieffer@gmail.com>2019-08-31 13:51:28 -0400
commit38cac86769abaa1e14d2dbe3b375fee802fb3b57 (patch)
tree10294171e0bb8436cfed2fd10a53e38bef40eb24 /pkgs/tools/video/rtmpdump
parent29d9be2e720e15e13962215b63200a3081b183b0 (diff)
downloadnixpkgs-38cac86769abaa1e14d2dbe3b375fee802fb3b57.tar
nixpkgs-38cac86769abaa1e14d2dbe3b375fee802fb3b57.tar.gz
nixpkgs-38cac86769abaa1e14d2dbe3b375fee802fb3b57.tar.bz2
nixpkgs-38cac86769abaa1e14d2dbe3b375fee802fb3b57.tar.lz
nixpkgs-38cac86769abaa1e14d2dbe3b375fee802fb3b57.tar.xz
nixpkgs-38cac86769abaa1e14d2dbe3b375fee802fb3b57.tar.zst
nixpkgs-38cac86769abaa1e14d2dbe3b375fee802fb3b57.zip
rtmpdump: 2015-12-30 -> 2019-03-30
Diffstat (limited to 'pkgs/tools/video/rtmpdump')
-rw-r--r--pkgs/tools/video/rtmpdump/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/tools/video/rtmpdump/default.nix b/pkgs/tools/video/rtmpdump/default.nix
index e5615093e48..06c035552e5 100644
--- a/pkgs/tools/video/rtmpdump/default.nix
+++ b/pkgs/tools/video/rtmpdump/default.nix
@@ -9,15 +9,15 @@ assert gnutlsSupport -> gnutlsSupport != null && nettle != null && !opensslSuppo
 assert opensslSupport -> openssl != null && !gnutlsSupport;
 
 with stdenv.lib;
-stdenv.mkDerivation rec {
+stdenv.mkDerivation {
   pname = "rtmpdump";
-  version = "2015-12-30";
+  version = "2019-03-30";
 
   src = fetchgit {
-    url = git://git.ffmpeg.org/rtmpdump;
+    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 = "fa8646daeb19dfd12c181f7d19de708d623704c0";
-    sha256 = "17m9rmnnqyyzsnnxcdl8258hjmw16nxbj1n1lr7fj3kmcs189iig";
+    rev = "c5f04a58fc2aeea6296ca7c44ee4734c18401aa3";
+    sha256 = "07ias612jgmxpam9h418kvlag32da914jsnjsfyafklpnh8gdzjb";
   };
 
   patches = [
@@ -40,9 +40,11 @@ stdenv.mkDerivation rec {
 
   outputs = [ "out" "dev" ];
 
+  separateDebugInfo = true;
+
   meta = {
     description = "Toolkit for RTMP streams";
-    homepage    = http://rtmpdump.mplayerhq.hu/;
+    homepage    = "http://rtmpdump.mplayerhq.hu/";
     license     = licenses.gpl2;
     platforms   = platforms.unix;
     maintainers = with maintainers; [ codyopel ];