mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: mpv: Disable build date.
* gnu/packages/video.scm (mpv)[arguments]: Add '--disable-build-date' to the configure-flags.
This commit is contained in:
parent
f4b7cb88a4
commit
98c8b963f4
1 changed files with 3 additions and 1 deletions
|
@ -891,7 +891,9 @@ (define-public mpv
|
|||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(copy-file (assoc-ref inputs "waf") "waf")
|
||||
(setenv "CC" "gcc"))))
|
||||
#:configure-flags (list "--enable-libmpv-shared" "--enable-zsh-comp")
|
||||
#:configure-flags (list "--enable-libmpv-shared"
|
||||
"--enable-zsh-comp"
|
||||
"--disable-build-date")
|
||||
;; No check function defined.
|
||||
#:tests? #f))
|
||||
(home-page "https://mpv.io/")
|
||||
|
|
Loading…
Reference in a new issue