packages: video: Fix mpv-minimal-x11 and mpv-minimal-wayland arguments entries
parent
e11a16a5bf
commit
1aaba01b6f
|
@ -1,11 +1,18 @@
|
||||||
(define-module (radix packages video)
|
(define-module (radix packages video)
|
||||||
#:use-module (ice-9 match)
|
#:use-module (ice-9 match)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
|
#:use-module (guix utils)
|
||||||
#:use-module (gnu packages video))
|
#:use-module (gnu packages video))
|
||||||
|
|
||||||
(define-public mpv-minimal/x11
|
(define-public mpv-minimal/x11
|
||||||
(package/inherit mpv
|
(package/inherit mpv
|
||||||
(name "mpv-minimal-x11")
|
(name "mpv-minimal-x11")
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments mpv)
|
||||||
|
((#:configure-flags flags)
|
||||||
|
#~(list "-Dlibmpv=true"
|
||||||
|
"-Dbuild-date=false"))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(filter (match-lambda
|
(filter (match-lambda
|
||||||
((package-name _)
|
((package-name _)
|
||||||
|
@ -26,6 +33,11 @@ general-purpose audio and video player, for X11.")))
|
||||||
(define-public mpv-minimal/wayland
|
(define-public mpv-minimal/wayland
|
||||||
(package/inherit mpv
|
(package/inherit mpv
|
||||||
(name "mpv-minimal-wayland")
|
(name "mpv-minimal-wayland")
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments mpv)
|
||||||
|
((#:configure-flags flags)
|
||||||
|
#~(list "-Dlibmpv=true"
|
||||||
|
"-Dbuild-date=false"))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(filter (match-lambda
|
(filter (match-lambda
|
||||||
((package-name _)
|
((package-name _)
|
||||||
|
|
Loading…
Reference in New Issue