From 0c6123f8aa6236dcce1320cd190865324f3a5f94 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Sun, 5 Jun 2022 22:39:37 -0700 Subject: gnu: aqbanking: Do not embed build date. * gnu/packages/gnucash.scm (aqbanking)[arguments]: Add 'use-version-instead-of-date phase. --- gnu/packages/gnucash.scm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/packages/gnucash.scm b/gnu/packages/gnucash.scm index ec50c8aaa6..01099375d3 100644 --- a/gnu/packages/gnucash.scm +++ b/gnu/packages/gnucash.scm @@ -303,7 +303,15 @@ applications and libraries. It is used by 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 -- cgit v1.2.3 eef4715e71ded20'>refslogtreecommitdiff
path: root/gnu/home/services
s='msg-avail'>...
AgeCommit message (Expand)Author
2022-06-15services: configuration: Use *unspecified* instead of 'disabled....Attila Lendvai
2022-04-29home: shells: Migrate fish to xdg-configuration-files....Bastien Rivière
2022-04-29home: services: fish: Fix incorrect ".config" file name....Maya
2022-04-21home: shepherd: Redirect input port to /dev/null....Ludovic Courtès
2022-04-21home: shepherd: "shepherd.conf" returns one value....Ludovic Courtès
2022-04-12home: shepherd: Prevent launching the second instance....Andrew Tropin
2022-04-11home: symlink-manager: Handle non-existing directory during cleanup....Andrew Tropin
2022-04-11home: shells: Rename zsh related functions....Andrew Tropin
2022-04-10home: symlink-manager: Use no-follow version of file-exists?....Andrew Tropin
2022-04-08home: Add home-xdg-data-files-service-type....Andrew Tropin
2022-04-08home: symlink-manager: Remove appending of leading dot....Andrew Tropin
2022-04-07home: shepherd: Default to version 0.9....Ludovic Courtès
2022-04-03home: services: zsh: Fix zshenv creation....Brian Kubisiak
2022-03-20home: symlink-manager: Respect XDG_CONFIG_HOME during activation....Andrew Tropin
2022-03-20home: Migrate fountutils and xdg modules to xdg-configuration-files....Andrew Tropin
2022-03-20home: shells: Migrate zsh to xdg-configuration-files....Andrew Tropin
2022-03-20home: Explicitly connect home-file and symlink-manager services....Andrew Tropin
2022-03-20home: symlink-manager: Add missing 'done' word in message....Andrew Tropin
2022-03-20home: symlink-manager: Use existing home-directory symbol....Andrew Tropin
2022-03-18home: services: Fix bash aliases without guix-defaults....angryrectangle
2022-03-18home: services: Export record type accessors....Ludovic Courtès
2022-03-10home: symlink-manager: Rename "path" to "file" where appropriate....Ludovic Courtès
2022-03-10home: symlink-manager: 'create-symlinks' uses 'file-system-fold'....Ludovic Courtès
2022-03-10home: symlink-manager: 'cleanup-symlinks' uses 'file-system-fold'....Ludovic Courtès
2022-03-10home: symlink-manager: Avoid extra 'lstat' call....Ludovic Courtès
2022-03-10home: symlink-manager: Remove 'empty-directory?' and avoid TOCTTOU race....Ludovic Courtès
2022-03-10home: symlink-manager: Use 'file-is-directory?'....Ludovic Courtès
2022-03-10home: symlink-manager: Use 'for-each' when used for effects....Ludovic Courtès
2022-03-10home: symlink-manager: Move helper procedures as top-level defines....Ludovic Courtès
2022-03-10home: symlink-manager: Clarify module imports....Ludovic Courtès
2022-03-01home: xdg: Fix xdg-desktop-entry config field serialization....Andrew Tropin
2022-02-07home: Add redshift service....Ludovic Courtès
2022-01-03home: services: Make strings in Gexps translateble....Xinglu Chen
2021-11-24home: services: bash: Only source /etc/bashrc if it exists....Tobias Geerinckx-Rice
2021-11-16home: services: bash: Emit 'extra-content' first again....Ludovic Courtès
2021-11-14gnu: home: services: Fix typo....Vagrant Cascadian
2021-11-14gnu: home: services: Fix typo....Vagrant Cascadian
2021-11-14gnu: home: services: Fix typo....Vagrant Cascadian
2021-11-07doc: Improve documentation of the Bash home service...Xinglu Chen
2021-11-07home: services: bash: Add ‘aliases’ field....Xinglu Chen
2021-10-16home: services: shells: Fix documentation about file-like objects....Oleg Pykhalov
2021-10-09home: services: configuration: Support file-like objects....Oleg Pykhalov
2021-10-09Move (gnu home-services) to (gnu home services)....Oleg Pykhalov
2021-10-08gnu: Move (gnu home-services) to (gnu home services)....Oleg Pykhalov
Brice Waegeneire