gnu: mpv: Remove trailing #t from phases.

* gnu/packages/video.scm (mpv)[arguments]: Don't explicitly return #t
from phases.
This commit is contained in:
Tobias Geerinckx-Rice 2022-10-16 02:00:02 +02:00
parent 19f3dbcb4d
commit 32be0431ff
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -2226,15 +2226,13 @@ (define-public mpv
;; and passed as linker flags, but the order in which they are added
;; varies. See <https://github.com/mpv-player/mpv/issues/7855>.
;; Set PYTHONHASHSEED as a workaround for deterministic results.
(setenv "PYTHONHASHSEED" "1")
#t))
(setenv "PYTHONHASHSEED" "1")))
(add-before
'configure 'setup-waf
(lambda* (#:key inputs #:allow-other-keys)
(let ((waf (assoc-ref inputs "waf")))
(copy-file (string-append waf "/bin/waf") "waf"))
(setenv "CC" "gcc")
#t)))
(setenv "CC" "gcc"))))
#:configure-flags (list "--enable-libmpv-shared"
"--enable-cdda"
"--enable-dvdnav"