mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: pipe-viewer: Correct references to yt-dlp program.
* gnu/packages/video.scm (pipe-viewer)[inputs]: Add yt-dlp. [phases](patch-source): Modify.
This commit is contained in:
parent
6dc682e5b9
commit
96a6084cd8
1 changed files with 10 additions and 3 deletions
|
@ -1106,7 +1106,10 @@ (define-public pipe-viewer
|
|||
(substitute* (find-files "lib" "\\.pm$")
|
||||
(("\"youtube-dl\"")
|
||||
(format #f "\"~a/bin/youtube-dl\""
|
||||
(assoc-ref inputs "youtube-dl"))))
|
||||
(assoc-ref inputs "youtube-dl")))
|
||||
(("\"yt-dlp\"")
|
||||
(format #f "\"~a/bin/yt-dlp\""
|
||||
(assoc-ref inputs "yt-dlp"))))
|
||||
(substitute* (find-files "bin" ".*-viewer$")
|
||||
(("'ffmpeg'")
|
||||
(format #f "'~a/bin/ffmpeg'"
|
||||
|
@ -1119,7 +1122,10 @@ (define-public pipe-viewer
|
|||
(assoc-ref inputs "xdg-utils")))
|
||||
(("'youtube-dl'")
|
||||
(format #f "'~a/bin/youtube-dl'"
|
||||
(assoc-ref inputs "youtube-dl"))))))
|
||||
(assoc-ref inputs "youtube-dl")))
|
||||
(("'yt-dlp'")
|
||||
(format #f "'~a/bin/yt-dlp'"
|
||||
(assoc-ref inputs "yt-dlp"))))))
|
||||
(add-after 'install 'install-xdg
|
||||
(lambda args
|
||||
(apply (assoc-ref copy:%standard-phases 'install)
|
||||
|
@ -1172,7 +1178,8 @@ (define-public pipe-viewer
|
|||
("perl-uri-escape" ,perl-uri-escape)
|
||||
("wget" ,wget)
|
||||
("xdg-utils" ,xdg-utils)
|
||||
("youtube-dl" ,youtube-dl)))
|
||||
("youtube-dl" ,youtube-dl)
|
||||
("yt-dlp" ,yt-dlp)))
|
||||
(propagated-inputs
|
||||
`(("dconf" ,dconf)))
|
||||
(home-page "https://github.com/trizen/pipe-viewer")
|
||||
|
|
Loading…
Reference in a new issue