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>master
parent
7f4e5bdfd6
commit
0424a58463
|
@ -1092,7 +1092,7 @@ H.264 (MPEG-4 AVC) video streams.")
|
||||||
(define-public pipe-viewer
|
(define-public pipe-viewer
|
||||||
(package
|
(package
|
||||||
(name "pipe-viewer")
|
(name "pipe-viewer")
|
||||||
(version "0.2.0")
|
(version "0.2.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1102,7 +1102,7 @@ H.264 (MPEG-4 AVC) video streams.")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "19qfs0nv7l01468f14a5zbvaiff5hrsk3a4zqknh15014xnvw08s"))))
|
(base32 "0c2v4pj86442sp71ndjmvd2bl1grp6g9ya2ywdaihq1f2djk6jxl"))))
|
||||||
(build-system perl-build-system)
|
(build-system perl-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:imported-modules
|
`(#:imported-modules
|
||||||
|
@ -1122,9 +1122,6 @@ H.264 (MPEG-4 AVC) video streams.")
|
||||||
(add-after 'unpack 'patch-source
|
(add-after 'unpack 'patch-source
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* (find-files "lib" "\\.pm$")
|
(substitute* (find-files "lib" "\\.pm$")
|
||||||
(("\"youtube-dl\"")
|
|
||||||
(format #f "\"~a/bin/youtube-dl\""
|
|
||||||
(assoc-ref inputs "youtube-dl")))
|
|
||||||
(("\"yt-dlp\"")
|
(("\"yt-dlp\"")
|
||||||
(format #f "\"~a/bin/yt-dlp\""
|
(format #f "\"~a/bin/yt-dlp\""
|
||||||
(assoc-ref inputs "yt-dlp"))))
|
(assoc-ref inputs "yt-dlp"))))
|
||||||
|
@ -1138,9 +1135,6 @@ H.264 (MPEG-4 AVC) video streams.")
|
||||||
(("'xdg-open'")
|
(("'xdg-open'")
|
||||||
(format #f "'~a/bin/xdg-open'"
|
(format #f "'~a/bin/xdg-open'"
|
||||||
(assoc-ref inputs "xdg-utils")))
|
(assoc-ref inputs "xdg-utils")))
|
||||||
(("'youtube-dl'")
|
|
||||||
(format #f "'~a/bin/youtube-dl'"
|
|
||||||
(assoc-ref inputs "youtube-dl")))
|
|
||||||
(("'yt-dlp'")
|
(("'yt-dlp'")
|
||||||
(format #f "'~a/bin/yt-dlp'"
|
(format #f "'~a/bin/yt-dlp'"
|
||||||
(assoc-ref inputs "yt-dlp"))))))
|
(assoc-ref inputs "yt-dlp"))))))
|
||||||
|
@ -1194,7 +1188,6 @@ H.264 (MPEG-4 AVC) video streams.")
|
||||||
perl-uri-escape
|
perl-uri-escape
|
||||||
wget
|
wget
|
||||||
xdg-utils
|
xdg-utils
|
||||||
youtube-dl
|
|
||||||
yt-dlp))
|
yt-dlp))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list dconf))
|
(list dconf))
|
||||||
|
|
Reference in New Issue