From 639402e17e19f21373d935d4bfe0f506c53f77be Mon Sep 17 00:00:00 2001 From: Alex Griffin Date: Sat, 7 May 2016 12:22:15 -0500 Subject: [PATCH 3/3] gnu: Add emacs-ledger-mode. * gnu/packages/emacs.scm (emacs-ledger-mode): New variable. --- gnu/packages/emacs.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 11010b2..3d9ac06 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2015, 2016 Ricardo Wurmus ;;; Copyright © 2016 Nils Gillmann ;;; Copyright © 2016 Chris Marusich +;;; Copyright © 2016 Alex Griffin ;;; ;;; This file is part of GNU Guix. ;;; @@ -1559,3 +1560,33 @@ to recognize a name like \"RFC 1234\". This package enhances ffap so that it correctly finds RFCs even when a space appears before the number.") (license license:gpl3+))) + +(define-public emacs-ledger-mode + (package + (name "emacs-ledger-mode") + (version "3.1.1") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/ledger/ledger/archive/v" version + ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "12jlv3gsjhrja25q9hrwh73cdacd2l3c2yyn8qnijav9mdhnbw4h")))) + (build-system emacs-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'install 'elisp-subdir + (lambda _ + (begin (chdir "lisp") + (delete-file "CMakeLists.txt")) + #t))))) + (home-page "http://ledger-cli.org/") + (synopsis "Emacs mode for working with \"ledger\" accounting data") + (description + "Ledger is a powerful, double-entry accounting system that is + accessed from the UNIX command-line. This package contains an + Emacs mode for manipulating ledger's text-based file format, + running reports on it, reconciling its accounts, and more.") + (license license:gpl2+))) -- 2.7.4