aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-03-03 09:18:41 -0300
committerEuAndreh <eu@euandre.org>2025-03-03 09:18:41 -0300
commit28c2455874d047cd0a28379e221962a4cb9b03af (patch)
treef92453e2868761c52e30c44881126d70b2109c49
parentqueue.scm: Add "gm2" in WIP section (diff)
downloadpackages-28c2455874d047cd0a28379e221962a4cb9b03af.tar.gz
packages-28c2455874d047cd0a28379e221962a4cb9b03af.tar.xz
queue.scm: Add "ffmpegx" and "mpvx" in WIP section
-rw-r--r--src/org/euandre/queue.scm28
1 files changed, 27 insertions, 1 deletions
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)