packages: video: Add mpv-sans-pulseaudio

pull/3/head
Luis Guilherme Coelho 2024-06-05 11:00:52 -03:00
parent 771768229a
commit 03311faecc
No known key found for this signature in database
GPG Key ID: 1F2E76ACE3F531C8
1 changed files with 14 additions and 0 deletions

14
radix/packages/video.scm Normal file
View File

@ -0,0 +1,14 @@
(define-module (radix packages video)
#:use-module (ice-9 match)
#:use-module (guix packages)
#:use-module (gnu packages video))
(define mpv-sans-pulseaudio
(package/inherit mpv
(propagated-inputs
(filter (match-lambda
(("pulseaudio" _) #f)
(else #t))
(package-propagated-inputs mpv)))))
mpv-sans-pulseaudio