diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-07-25 21:10:10 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-07-26 08:30:40 +0300 |
commit | 8f5157bd8206fb0593cff8ef50b367d3420302d1 (patch) | |
tree | 83340f6ceb279635b3603f112e0d1728e8b32a24 | |
parent | bfb480e76f7968f8e39e37e64681b0fd062edb1e (diff) | |
download | guix-8f5157bd8206fb0593cff8ef50b367d3420302d1.tar.gz |
gnu: mpv: Update to 0.36.0.
* gnu/packages/video.scm (mpv): Update to 0.36.0.
-rw-r--r-- | gnu/packages/video.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 71d16dad74..bbc03d2fcc 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2194,7 +2194,7 @@ SVCD, DVD, 3ivx, DivX 3/4/5, WMV and H.264 movies.") (define-public mpv (package (name "mpv") - (version "0.35.1") + (version "0.36.0") (source (origin (method git-fetch) (uri (git-reference @@ -2202,7 +2202,7 @@ SVCD, DVD, 3ivx, DivX 3/4/5, WMV and H.264 movies.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1lzaijqddr4ir9nb27cv9ki20b0k5jns2k47v4xvmi30v1gi71ha")))) + (base32 "1ri06h7pv6hrxmxxc618n9hymlgr0gfx38bqq5dcszdgnlashsgk")))) (build-system waf-build-system) (arguments (list @@ -2211,7 +2211,7 @@ SVCD, DVD, 3ivx, DivX 3/4/5, WMV and H.264 movies.") (add-after 'unpack 'patch-file-names (lambda* (#:key inputs #:allow-other-keys) (substitute* "player/lua/ytdl_hook.lua" - (("\"yt-dlp\",") + (("\"yt-dlp\",") (string-append "\"" (search-input-file inputs "bin/yt-dlp") "\","))))) (add-before 'configure 'build-reproducibly |