[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
186/295: gnu: Add rtmpdump.
From: |
guix-commits |
Subject: |
186/295: gnu: Add rtmpdump. |
Date: |
Mon, 27 Jul 2020 06:26:06 -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")
- 148/295: gnu: gobject-introspection: Update package definition., (continued)
- 148/295: gnu: gobject-introspection: Update package definition., guix-commits, 2020/07/27
- 153/295: gnu: gst-plugins-good: Update package definition., guix-commits, 2020/07/27
- 162/295: gnu: Add libtimidity., guix-commits, 2020/07/27
- 164/295: gnu: Add faac., guix-commits, 2020/07/27
- 165/295: gnu: Add flite., guix-commits, 2020/07/27
- 160/295: gnu: Add tslib., guix-commits, 2020/07/27
- 161/295: gnu: Add flux., guix-commits, 2020/07/27
- 168/295: gnu: Add libde265., guix-commits, 2020/07/27
- 169/295: gnu: Add libmms., guix-commits, 2020/07/27
- 180/295: gnu: Add transcode., guix-commits, 2020/07/27
- 186/295: gnu: Add rtmpdump.,
guix-commits <=
- 192/295: gnu: gtk-doc: Update package definition., guix-commits, 2020/07/27
- 191/295: gnu: gtk+: Update package definition., guix-commits, 2020/07/27
- 193/295: gnu: gtk+: Propagate libcloudproviders., guix-commits, 2020/07/27
- 195/295: gnu: gtksourceview-3: Update package definition., guix-commits, 2020/07/27
- 209/295: gnu: libnotify: Update package definition., guix-commits, 2020/07/27
- 167/295: gnu: Add libvideogfx., guix-commits, 2020/07/27
- 178/295: gnu: Add mediasdk., guix-commits, 2020/07/27
- 174/295: gnu: Add libopenmpt., guix-commits, 2020/07/27
- 185/295: gnu: Add iqa., guix-commits, 2020/07/27
- 184/295: gnu: Add zxing-cpp., guix-commits, 2020/07/27