me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-hledger-mode

* gnu/packages/finance.scm (emacs-hledger-mode): New variable
Collin J. Doering via Guix-patches via 2022-04-07 12:54:43 -04:00 committed by Christine Lemmer-Webber
parent e05e5342a0
commit 3650425b46
No known key found for this signature in database
GPG Key ID: 4BC025925FF8F4D3
1 changed files with 33 additions and 0 deletions

View File

@ -30,6 +30,7 @@
;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org>
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2022 Philip McGrath <philip@philipmcgrath.com>
;;; Copyright © 2022 Collin J. Doering <collin@rekahsoft.ca>
;;;
;;; This file is part of GNU Guix.
;;;
@ -78,6 +79,7 @@
#:use-module (gnu packages documentation)
#:use-module (gnu packages dns)
#:use-module (gnu packages emacs)
#:use-module (gnu packages emacs-xyz)
#:use-module (gnu packages dbm)
#:use-module (gnu packages gettext)
#:use-module (gnu packages gnome)
@ -462,6 +464,37 @@ in ability, and easy to use.
This package provides the Emacs mode.")
(license license:gpl2+))))
(define-public emacs-hledger-mode
(let ((commit "400bde42a8d2712af80cd7c773c9cdfbb63a515a")
(revision "1"))
(package
(name "emacs-hledger-mode")
(version (git-version "20220515" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/narendraj9/hledger-mode")
(commit commit)))
(sha256
(base32
"0xmcfpr3rxli1adwypg18npl8hb8ak5rg6a6i26inzzqja6vr897"))))
(build-system emacs-build-system)
(propagated-inputs
(list emacs-popup
emacs-async
emacs-htmlize))
(arguments
'(#:include '("^[^/]+.el$")
#:exclude '()))
(home-page "https://github.com/narendraj9/hledger-mode")
(synopsis "Mode for writing journal entries for hledger")
(description
"This major mode for Emacs enables writing and managing hledger
journal files. It generates some useful reports along with some financial
ratios that can help you keep a check on your financial health for users of
the plaintext accounting system hledger.")
(license license:gpl3))))
(define-public geierlein
(package
(name "geierlein")