mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 19:40:46 +02:00
gnu: Add emacs-feature-mode.
* gnu/packages/emacs-xyz.scm (emacs-feature-mode): New variable.
This commit is contained in:
parent
24be67517c
commit
aa1b0fb867
1 changed files with 27 additions and 0 deletions
|
@ -154,6 +154,7 @@
|
||||||
#:use-module (gnu packages package-management)
|
#:use-module (gnu packages package-management)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages pdf)
|
#:use-module (gnu packages pdf)
|
||||||
|
#:use-module (gnu packages ruby)
|
||||||
#:use-module (gnu packages rust-apps)
|
#:use-module (gnu packages rust-apps)
|
||||||
#:use-module (gnu packages scheme)
|
#:use-module (gnu packages scheme)
|
||||||
#:use-module (gnu packages speech)
|
#:use-module (gnu packages speech)
|
||||||
|
@ -5371,6 +5372,32 @@ that it correctly finds RFCs even when a space appears before the
|
||||||
number.")
|
number.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-feature-mode
|
||||||
|
(let ((version "20190801")
|
||||||
|
(revision "1")
|
||||||
|
(commit "11ae1671629bfedaa553c7b819676d64eb320992"))
|
||||||
|
(package
|
||||||
|
(name "emacs-feature-mode")
|
||||||
|
(version (git-version version revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/michaelklishin/cucumber.el.git")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0yd4gkxz9xcbgibfgr8apsid3f83nmg5jgqk5nql0linj5gymc28"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:include (cons* "^features\\/" "snippets\\/" "^support\\/"
|
||||||
|
%default-include)))
|
||||||
|
(home-page "https://github.com/michaelklishin/cucumber.el/")
|
||||||
|
(synopsis "Emacs mode for editing Gherkin plain text user stories")
|
||||||
|
(description "Major mode for editing Gherkin (popularized by the
|
||||||
|
Cucumber tool) user stories. Also known by the name @code{cucumber.el}.")
|
||||||
|
(license license:gpl2+))))
|
||||||
|
|
||||||
(define-public emacs-org-bullets
|
(define-public emacs-org-bullets
|
||||||
(package
|
(package
|
||||||
(name "emacs-org-bullets")
|
(name "emacs-org-bullets")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue