mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: aqbanking: Do not embed build date.
* gnu/packages/gnucash.scm (aqbanking)[arguments]: Add 'use-version-instead-of-date phase.
This commit is contained in:
parent
ae1d8d6a6f
commit
0c6123f8aa
1 changed files with 9 additions and 1 deletions
|
@ -303,7 +303,15 @@ (define-public aqbanking
|
|||
(arguments
|
||||
`(;; Parallel building fails because aqhbci is required before it's
|
||||
;; built.
|
||||
#:parallel-build? #f))
|
||||
#:parallel-build? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; Embed the package version instead of the build date
|
||||
(add-after 'unpack 'use-version-instead-of-date
|
||||
(lambda _
|
||||
(substitute*
|
||||
"src/libs/plugins/backends/aqhbci/header.xml.in"
|
||||
(("@DATETIME@") ,version)))))))
|
||||
(propagated-inputs
|
||||
(list gwenhywfar))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue