[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-read-only-cfg.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-read-only-cfg. |
Date: |
Wed, 19 May 2021 09:56:39 -0400 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new cc07534 gnu: Add emacs-read-only-cfg.
cc07534 is described below
commit cc075341ab0f86f9202d2988a852339f5609f9e8
Author: Stefan Reichör <stefan@xsteve.at>
AuthorDate: Tue May 18 21:59:44 2021 +0200
gnu: Add emacs-read-only-cfg.
* gnu/packages/emacs-xyz.scm (emacs-read-only-cfg): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index fba4278..67cb2c1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2069,6 +2069,32 @@ letter to each link using avy.")
@command{sudo} if it cannot write to it.")
(license license:expat)))
+(define-public emacs-read-only-cfg
+ ;; XXX: Upstream has no tagged release. Version is extracted from keyword
+ ;; in main file.
+ (let ((commit "c128c9412f768adf89ff5c4ad433cf0beab6656a")
+ (revision "0"))
+ (package
+ (name "emacs-read-only-cfg")
+ (version (git-version "0.1.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pfchen/read-only-cfg")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "11zj4ysmacvz82j1siqlcp30i05my20lscls8wkdjl75g9d2b12l"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/pfchen/read-only-cfg")
+ (synopsis "Make files read-only based on user configuration")
+ (description
+ "Read-only-cfg is an Emacs minor mode that can automatically make files
+read-only based on user configuration. User configuration may be prefix
+directories or regex patterns.")
+ (license license:gpl3+))))
+
(define-public emacs-bbdb
(package
(name "emacs-bbdb")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-read-only-cfg.,
guix-commits <=