me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/video.scm (youtube-viewer)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2018-09-13 19:35:21 +02:00
parent 7d1cc61293
commit 6be445785a
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

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