[bug#61067,v3,5/5] gnu: wine-minimal: Build more reproducibly.
Commit Message
* gnu/packages/wine.scm (wine-minimal)[phases]: Add a new 'set-widl-time-override phase.
---
gnu/packages/wine.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
--
2.39.1
@@ -134,7 +134,12 @@ (define-public wine-minimal
(substitute* "tools/makedep.c"
(("output_filenames\\( unix_libs \\);" all)
(string-append all
- "output ( \" -Wl,-rpath=%s \", arch_install_dirs[arch] );"))))))
+ "output ( \" -Wl,-rpath=%s \", arch_install_dirs[arch] );")))))
+ (add-before 'build 'set-widl-time-override
+ ;; Set WIDL_TIME_OVERRIDE to avoid embedding the current date in
+ ;; files generated by WIDL.
+ (lambda _
+ (setenv "WIDL_TIME_OVERRIDE" "315532800"))))
#:configure-flags
#~(list "--without-freetype"
"--without-x")))