mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add rtmpdump.
* gnu/packages/networking.scm (rtmpdump): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
c42526e947
commit
63a1783d3a
1 changed files with 35 additions and 0 deletions
|
@ -135,6 +135,41 @@ (define-module (gnu packages networking)
|
|||
#: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")
|
||||
|
|
Loading…
Reference in a new issue