guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: Add livestreamer.


From: David Thompson
Subject: 03/03: gnu: Add livestreamer.
Date: Sun, 05 Apr 2015 16:44:07 +0000

davexunit pushed a commit to branch master
in repository guix.

commit e16fde1447840ffb1cafd505b10c4296da4d44e3
Author: David Thompson <address@hidden>
Date:   Sat Apr 4 13:18:40 2015 -0400

    gnu: Add livestreamer.
    
    * gnu/packages/video.scm (livestreamer): New variable.
---
 gnu/packages/video.scm |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 58263f0..8ded42c 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1300,3 +1300,30 @@ codec library.  It uses ASP features such as b-frames, 
global and quarter
 pixel motion compensation, lumi masking, trellis quantization, and H.263, MPEG
 and custom quantization matrices.")
     (license license:gpl2+)))
+
+(define-public livestreamer
+  (package
+    (name "livestreamer")
+    (version "1.12.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/chrippa/livestreamer/archive/v";
+                    version ".tar.gz"))
+              (file-name (string-append "livestreamer-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1dhgk8v8q1h3km4g5jc0cmjsxdaa2d456fvdb2wk7hmxmmwbqm9j"))))
+    (build-system python-build-system)
+    (arguments
+     '(#:tests? #f)) ; tests rely on external web servers
+    (native-inputs
+     `(("python-setuptools" ,python-setuptools)))
+    (propagated-inputs
+     `(("python-requests" ,python-requests)
+       ("python-singledispatch" ,python-singledispatch)))
+    (synopsis "Internet video stream viewer")
+    (description "Livestreamer is a command-line utility that extracts streams
+from various services and pipes them into a video playing application.")
+    (home-page "http://livestreamer.io/";)
+    (license license:bsd-2)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]