mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: Add homebank.
* gnu/packages/finance.scm (homebank): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c8364ebca8
commit
66b707a7d2
1 changed files with 29 additions and 0 deletions
|
@ -14,6 +14,7 @@
|
|||
;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
|
||||
;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
|
||||
;;; Copyright © 2019 Martin Becze <mjbecze@riseup.net>
|
||||
;;; Copyright © 2019 Sebastian Schott <sschott@mailbox.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -151,6 +152,34 @@ (define-public bitcoin-core
|
|||
line client and a client based on Qt.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public homebank
|
||||
(package
|
||||
(name "homebank")
|
||||
(version "5.2.8")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://homebank.free.fr/public/homebank-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"13ampiv68y30kc0p2560g3yz8whqpwnidfcnb9lndv93b9ca767y"))))
|
||||
(build-system glib-or-gtk-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
("intltool" ,intltool)))
|
||||
(inputs
|
||||
`(("gtk+" ,gtk+)
|
||||
("libsoup" ,libsoup)))
|
||||
(arguments
|
||||
`(#:configure-flags (list "-without-ofx"))) ; libofx is not available yet
|
||||
(home-page "http://homebank.free.fr/")
|
||||
(synopsis "Graphical personal accounting application")
|
||||
(description "HomeBank allows you to manage your personal accounts at
|
||||
home. The seeks to be lightweight, simple and easy to use. It brings
|
||||
features that allow you to analyze your finances in a detailed way instantly
|
||||
and dynamically with report tools based on filtering and graphical charts.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public ledger
|
||||
(package
|
||||
(name "ledger")
|
||||
|
|
Loading…
Reference in a new issue