guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: Add emacs-standard-dirs.


From: guix-commits
Subject: 02/03: gnu: Add emacs-standard-dirs.
Date: Sat, 19 Sep 2020 16:53:41 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit cfcccc8a2afd13eaf103098e4d1611cef3b7123e
Author: Joseph LaFreniere <joseph@lafreniere.xyz>
AuthorDate: Sun Jul 26 11:06:19 2020 -0500

    gnu: Add emacs-standard-dirs.
    
    * gnu/packages/emacs-xyz.scm (emacs-standard-dirs): New variable.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 15f24cd..d47b1ca 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3792,6 +3792,30 @@ particular, the minor mode works quite well with Org or 
Markdown modes, or
 other markup language major modes.")
       (license license:gpl3+))))
 
+(define-public emacs-standard-dirs
+  (package
+    (name "emacs-standard-dirs")
+    (version "2.0.0")
+    (home-page "https://github.com/lafrenierejm/standard-dirs.el";)
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url home-page)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0r814qcrhvx4qlx4sdzwdmrhiryslqclx0bnpp0qcrbx6g8qfl25"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-f" ,emacs-f)
+       ("emacs-s" ,emacs-s)))
+    (synopsis "Platform-specific paths for config, cache, and other data")
+    (description
+     "This package provides platform-specific paths for reading and writing
+configuration, cache, and other data.")
+    (license license:gpl3+)))
+
 (define-public emacs-string-inflection
   (package
     (name "emacs-string-inflection")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]