guix-commits
[Top][All Lists]
Advanced

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

01/05: gnu: youtube-viewer: Don't use unstable tarball.


From: Tobias Geerinckx-Rice
Subject: 01/05: gnu: youtube-viewer: Don't use unstable tarball.
Date: Thu, 13 Sep 2018 13:59:14 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 6be445785a4eb97cbecff391ae5b9fde89cb83de
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Thu Sep 13 19:35:21 2018 +0200

    gnu: youtube-viewer: Don't use unstable tarball.
    
    * gnu/packages/video.scm (youtube-viewer)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/video.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index aa2b446..067a1dd 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1429,14 +1429,14 @@ audio, images) from the Web.  It can use either mpv or 
vlc for playback.")
     (name "youtube-viewer")
     (version "3.3.4")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/trizen/youtube-viewer/archive/";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/trizen/youtube-viewer.git";)
+                    (commit version)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1dqaxkz5svv0lmxds6lppcpzhkq6gar2raw9gx6imrd7yz02fpgn"))))
+                "1kpq3mk81hpjp5q4mi907ds0dbif40a4dzmv2h2lq5pcp757sw6i"))))
     (build-system perl-build-system)
     (native-inputs
      `(("perl-module-build" ,perl-module-build)))



reply via email to

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