[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: gnu: Add emacs-auto-compile.
From: |
guix-commits |
Subject: |
01/06: gnu: Add emacs-auto-compile. |
Date: |
Sun, 29 Jan 2023 02:26:27 -0500 (EST) |
lilyp pushed a commit to branch master
in repository guix.
commit 6f545b77e2cf51093fe52ce4af89199c40c5fcde
Author: Cayetano Santos <csantosb@inventati.org>
AuthorDate: Mon Jan 16 13:38:20 2023 +0100
gnu: Add emacs-auto-compile.
* gnu/packages/emacs-xyz.scm (emacs-auto-compile): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
---
gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ad3603b205..4b2fc8f0dc 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3024,6 +3024,28 @@ an interactive shell, and look up definitions and
documentation as well as
code completion and project management support.")
(license license:gpl3+)))
+(define-public emacs-auto-compile
+ (package
+ (name "emacs-auto-compile")
+ (version "1.7.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emacscollective/auto-compile.git")
+ (commit version)))
+ (sha256
+ (base32
+ "1njnyilv6lxnbvi6yrgzg6qjhf6vgh4fpag4hav1j45718y6kd31"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-compat emacs-packed))
+ (home-page "https://github.com/emacscollective/auto-compile")
+ (synopsis "Automatically compile Emacs Lisp libraries")
+ (description
+ "This package provides two minor modes which automatically recompile
+Emacs Lisp source files. Together, these modes guarantee that Emacs never
+loads outdated byte code files.")
+ (license license:gpl3+)))
+
(define-public emacs-auto-sudoedit
(package
(name "emacs-auto-sudoedit")
- branch master updated (962ba70109 -> aee983816f), guix-commits, 2023/01/29
- 04/06: gnu: Unify webkitgtk and webkitgtk-next., guix-commits, 2023/01/29
- 01/06: gnu: Add emacs-auto-compile.,
guix-commits <=
- 03/06: gnu: Add vte-with-gtk-4., guix-commits, 2023/01/29
- 05/06: gnu: mpdevil: Update to 1.10.0, guix-commits, 2023/01/29
- 06/06: gnu: komikku: Update to 1.9.0., guix-commits, 2023/01/29
- 02/06: gnu: vte: Update to 0.70.2., guix-commits, 2023/01/29