From 28c2455874d047cd0a28379e221962a4cb9b03af Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Mon, 3 Mar 2025 09:18:41 -0300 Subject: queue.scm: Add "ffmpegx" and "mpvx" in WIP section --- src/org/euandre/queue.scm | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'src/org/euandre') diff --git a/src/org/euandre/queue.scm b/src/org/euandre/queue.scm index 22dc6eb..a57b5f6 100644 --- a/src/org/euandre/queue.scm +++ b/src/org/euandre/queue.scm @@ -179,7 +179,9 @@ ssh time tls - version-control) + version-control + video + xml) (use-service-modules certbot cgit @@ -571,6 +573,28 @@ collections.OrderedDict that works in Python 2.4-2.6.") (modify-inputs (package-native-inputs gcc-14) (append flex))))) +(define ffmpegx + (package + (inherit ffmpeg-7) + (name "ffmpegx") + (arguments + (substitute-keyword-arguments (package-arguments ffmpeg-7) + ((#:configure-flags flags) + #~(append + #$flags + '("--enable-libxml2"))))) + (inputs + (modify-inputs (package-inputs ffmpeg-7) + (append libxml2))))) + +(define mpvx + (package + (inherit mpv) + (name "mpvx") + (propagated-inputs + (modify-inputs (package-propagated-inputs mpv) + (replace "ffmpeg" ffmpegx))))) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -1971,6 +1995,8 @@ SetEnv GIT_CONFIG_GLOBAL=/etc/gitconfig"))) hunspell-dict-es-utf8 python-telegram-bot gm2 + ffmpegx + mpvx sqlitex scryptkdf go-full) -- cgit v1.2.3