mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: gpodder: Build reproducibly.
* gnu/packages/gpodder.scm (gpodder)[arguments]: Add 'do-not-run-msgmerge' phase before 'install'. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
bab7a49558
commit
7a352f76cf
1 changed files with 7 additions and 0 deletions
|
@ -69,6 +69,13 @@ (define-public gpodder
|
||||||
(substitute* "src/gpodder/util.py"
|
(substitute* "src/gpodder/util.py"
|
||||||
(("xdg-open") (string-append xdg-utils "/bin/xdg-open")))
|
(("xdg-open") (string-append xdg-utils "/bin/xdg-open")))
|
||||||
#t)))
|
#t)))
|
||||||
|
;; 'msgmerge' introduces non-determinism by resetting the
|
||||||
|
;; POT-Creation-Date in .po files.
|
||||||
|
(add-before 'install 'do-not-run-msgmerge
|
||||||
|
(lambda _
|
||||||
|
(substitute* "makefile"
|
||||||
|
(("msgmerge") "true"))
|
||||||
|
#t))
|
||||||
(add-before 'install 'make-po-files-writable
|
(add-before 'install 'make-po-files-writable
|
||||||
(lambda _
|
(lambda _
|
||||||
(for-each
|
(for-each
|
||||||
|
|
Loading…
Reference in a new issue