diff options
-rw-r--r-- | gnu/packages/gnucash.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/gnucash.scm b/gnu/packages/gnucash.scm index 6df2b76505..7ac7cb0d8f 100644 --- a/gnu/packages/gnucash.scm +++ b/gnu/packages/gnucash.scm @@ -160,12 +160,16 @@ (map (lambda (l) (assoc l (package-inputs this-package))) '("perl-finance-quote"))))))))) - '("gnucash" - "gnc-fq-update")))) + '("gnucash")))) (add-after 'install 'glib-or-gtk-compile-schemas (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas)) (add-after 'install 'glib-or-gtk-wrap - (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))))) + (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)) + (add-before 'glib-or-gtk-wrap 'delete-gnc-fq-update + (lambda _ + ;; We are not updating Finance::Quote from CPAN. There is no + ;; reason to install this binary. + (delete-file (string-append #$output "/bin/gnc-fq-update"))))))) (native-inputs (list gmp `(,glib "bin") ;glib-compile-schemas, etc. |