me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-standard-dirs.

* gnu/packages/emacs-xyz.scm (emacs-standard-dirs): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Joseph LaFreniere 2020-07-26 11:06:19 -05:00 committed by Ludovic Courtès
parent 1b179d7876
commit cfcccc8a2a
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 24 additions and 0 deletions

View File

@ -3792,6 +3792,30 @@ particular, the minor mode works quite well with Org or Markdown modes, or
other markup language major modes.") other markup language major modes.")
(license license:gpl3+)))) (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 (define-public emacs-string-inflection
(package (package
(name "emacs-string-inflection") (name "emacs-string-inflection")