diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-23 02:00:06 +0200 |
commit | 32be0431ff1e3aaedde3dc5fff46fdb89348579f (patch) | |
tree | 8c443b7035e878808c8a4081dacfc1e0080781ce | |
parent | 19f3dbcb4d4261b6d3813d36174b8ca6ac52d2ea (diff) |
gnu: mpv: Remove trailing #t from phases.
* gnu/packages/video.scm (mpv)[arguments]: Don't explicitly return #t
from phases.
-rw-r--r-- | gnu/packages/video.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 9fb17cf5ba..43686034ba 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2226,15 +2226,13 @@ SVCD, DVD, 3ivx, DivX 3/4/5, WMV and H.264 movies.") ;; 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" |