mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: pipe-viewer: Update to 0.2.3.
* gnu/packages/video.scm (pipe-viewer): Update to 0.2.3 [inputs, arguments]: Remove dependency on youtube-dl, unnecessary since 0.2.1. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7f4e5bdfd6
commit
0424a58463
1 changed files with 2 additions and 9 deletions
|
@ -1092,7 +1092,7 @@ (define-public mkvtoolnix
|
|||
(define-public pipe-viewer
|
||||
(package
|
||||
(name "pipe-viewer")
|
||||
(version "0.2.0")
|
||||
(version "0.2.3")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -1102,7 +1102,7 @@ (define-public pipe-viewer
|
|||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "19qfs0nv7l01468f14a5zbvaiff5hrsk3a4zqknh15014xnvw08s"))))
|
||||
(base32 "0c2v4pj86442sp71ndjmvd2bl1grp6g9ya2ywdaihq1f2djk6jxl"))))
|
||||
(build-system perl-build-system)
|
||||
(arguments
|
||||
`(#:imported-modules
|
||||
|
@ -1122,9 +1122,6 @@ (define-public pipe-viewer
|
|||
(add-after 'unpack 'patch-source
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* (find-files "lib" "\\.pm$")
|
||||
(("\"youtube-dl\"")
|
||||
(format #f "\"~a/bin/youtube-dl\""
|
||||
(assoc-ref inputs "youtube-dl")))
|
||||
(("\"yt-dlp\"")
|
||||
(format #f "\"~a/bin/yt-dlp\""
|
||||
(assoc-ref inputs "yt-dlp"))))
|
||||
|
@ -1138,9 +1135,6 @@ (define-public pipe-viewer
|
|||
(("'xdg-open'")
|
||||
(format #f "'~a/bin/xdg-open'"
|
||||
(assoc-ref inputs "xdg-utils")))
|
||||
(("'youtube-dl'")
|
||||
(format #f "'~a/bin/youtube-dl'"
|
||||
(assoc-ref inputs "youtube-dl")))
|
||||
(("'yt-dlp'")
|
||||
(format #f "'~a/bin/yt-dlp'"
|
||||
(assoc-ref inputs "yt-dlp"))))))
|
||||
|
@ -1194,7 +1188,6 @@ (define-public pipe-viewer
|
|||
perl-uri-escape
|
||||
wget
|
||||
xdg-utils
|
||||
youtube-dl
|
||||
yt-dlp))
|
||||
(propagated-inputs
|
||||
(list dconf))
|
||||
|
|
Loading…
Reference in a new issue