diff options
author | Attila Lendvai <attila@lendvai.name> | 2024-07-13 17:59:36 +0200 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-15 21:37:53 +0800 |
commit | 3689faac5c10249f052c979b527cba26054170d8 (patch) | |
tree | 9dc9207689f3dd42acfe8ccd36562afd8646b331 /gnu/packages/video.scm | |
parent | 7e703ae7506251952b775e645785b095c183f8e8 (diff) | |
download | guix-3689faac5c10249f052c979b527cba26054170d8.tar.gz guix-3689faac5c10249f052c979b527cba26054170d8.zip |
gnu: smplayer: Update to 23.12.0.
* gnu/packages/video.scm (smplayer) [inputs]: Add qtdeclarative-5.
Change-Id: I6b727f6fe368bd70bf9fc3d61f7c0b5efe56c3a1
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index c2de0bcab7..8728da1775 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2711,7 +2711,7 @@ projects while introducing many more.") (define-public smplayer (package (name "smplayer") - (version "22.7.0") + (version "23.12.0") (source (origin (method git-fetch) (uri (git-reference @@ -2719,12 +2719,16 @@ projects while introducing many more.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0qs9vz440bdvnyghi7f4frsan7n9xiy3afw9lhmf5m8xxa37325c")))) + (base32 "0yrm57rib910h9m4avhg6mkmkzy9xjb3f185c5zr6jls100az8h1")))) (build-system qt-build-system) (native-inputs (list qttools-5)) (inputs - (list bash-minimal qtbase-5 zlib mpv)) + (list bash-minimal + qtbase-5 + qtdeclarative-5 + zlib + mpv)) (arguments (list #:tests? #false ; no tests #:make-flags #~(list (string-append "PREFIX=" #$output) |