dannym pushed a commit to branch wip-desktop
in repository guix.
commit c1892bfc37f7fac83e9699dfd6ed5c91f25d9114
Author: Raghav Gururajan <[email protected]>
AuthorDate: Fri Jul 3 07:12:48 2020 -0400
gnu: Add libmms.
* gnu/packages/video.scm (libmms): New variable.
Signed-off-by: Danny Milosavljevic <[email protected]>
---
gnu/packages/video.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 284012f..db9761e 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -171,6 +171,25 @@
#:use-module (gnu packages xml)
#:use-module (gnu packages xorg))
+(define-public libmms
+ (package
+ (name "libmms")
+ (version "0.6.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "https://sourceforge.net/projects/" name "/files/"
+ name "/" version "/" name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0kvhxr5hkabj9v7ah2rzkbirndfqdijd9hp8v52c1z6bxddf019w"))))
+ (build-system gnu-build-system)
+ (synopsis "MMS stream protocol library")
+ (description "Libmms is a library for streaming media files using the mmst
+and mmsh protocols.")
+ (home-page "https://sourceforge.net/projects/libmms/")
+ (license license:lgpl2.1+)))
+
(define-public libvideogfx
(package
(name "libvideogfx")