mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48: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
|
(arguments
|
||||||
`(;; Parallel building fails because aqhbci is required before it's
|
`(;; Parallel building fails because aqhbci is required before it's
|
||||||
;; built.
|
;; 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
|
(propagated-inputs
|
||||||
(list gwenhywfar))
|
(list gwenhywfar))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in a new issue