[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
82/100: gnu: Add rtmpdump.
From: |
guix-commits |
Subject: |
82/100: gnu: Add rtmpdump. |
Date: |
Wed, 8 Jul 2020 03:36:56 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit b218a49bd790d2e09e68ef31977009a8eb0cc321
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri Jul 3 12:10:10 2020 -0400
gnu: Add rtmpdump.
* gnu/packages/networking.scm (rtmpdump): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/networking.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 1720138..6bcdc33 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -135,6 +135,41 @@
#:use-module (gnu packages xml)
#:use-module (ice-9 match))
+(define-public rtmpdump
+ (package
+ (name "rtmpdump")
+ (version "2.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "https://rtmpdump.mplayerhq.hu/download/"
+ name "-" version ".tgz"))
+ (sha256
+ (base32 "0b2b49a57kpz9gi8dx1x3cs8b0gjx8x0c89x0q96kkl2knlvff7g"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; No tests
+ #:make-flags
+ (list
+ (string-append "prefix=" (assoc-ref %outputs "out")))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure))))
+ (inputs
+ `(("openssl" ,openssl-1.0)
+ ("zlib" ,zlib)))
+ (synopsis "Tools and library for handling RTMP streams")
+ (description "RTMPdump is a toolkit for RTMP streams. All forms of RTMP
are
+supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://.")
+ (home-page "https://rtmpdump.mplayerhq.hu/")
+ (license
+ (list
+ ;; Library.
+ license:lgpl2.1+
+ ;; Others.
+ license:gpl2+))))
+
(define-public srt
(package
(name "srt")
- 84/100: gnu: Add rust-imgref., (continued)
- 84/100: gnu: Add rust-imgref., guix-commits, 2020/07/08
- 85/100: gnu: gtk+-2: Update package definition., guix-commits, 2020/07/08
- 88/100: gnu: gtk-doc: Update package definition., guix-commits, 2020/07/08
- 89/100: gnu: gtk+: Propagate libcloudproviders., guix-commits, 2020/07/08
- 92/100: gnu: gtksourceview-2: Update package definition., guix-commits, 2020/07/08
- 93/100: gnu: fuse: Update package definition., guix-commits, 2020/07/08
- 97/100: gnu: Add opensles., guix-commits, 2020/07/08
- 86/100: gnu: Add libcloudproviders., guix-commits, 2020/07/08
- 87/100: gnu: gtk+: Update package definition., guix-commits, 2020/07/08
- 77/100: gnu: Add vo-aacenc., guix-commits, 2020/07/08
- 82/100: gnu: Add rtmpdump.,
guix-commits <=
- 95/100: gnu: gvfs: Update package definition., guix-commits, 2020/07/08
- 99/100: gnu: gst-plugins-ugly: Update package definition., guix-commits, 2020/07/08
- 94/100: gnu: libgdata: Update package definition., guix-commits, 2020/07/08
- 96/100: gnu: Add openni2., guix-commits, 2020/07/08
- 76/100: gnu: Add transcode., guix-commits, 2020/07/08
- 78/100: gnu: Add webrtc-audio-processing., guix-commits, 2020/07/08
- 80/100: gnu: Add zxing-cpp., guix-commits, 2020/07/08
- 83/100: gnu: Add libnice., guix-commits, 2020/07/08
- 90/100: gnu: gtksourceview: Update package definition., guix-commits, 2020/07/08
- 91/100: gnu: gtksourceview-3: Update package definition., guix-commits, 2020/07/08