mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add emacs-org-jira.
* gnu/packages/emacs-xyz.scm (emacs-org-jira): New variable.
This commit is contained in:
parent
0f4e4d8ff0
commit
04e748465c
1 changed files with 27 additions and 0 deletions
|
@ -17586,3 +17586,30 @@ (define-public emacs-org-emms
|
|||
files from org-mode using EMMS, The Emacs Multimedia System. If the link
|
||||
contains a track position, playback will start at the specified position.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-org-jira
|
||||
(package
|
||||
(name "emacs-org-jira")
|
||||
(version "4.3.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ahungry/org-jira.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1l80r2a9zzbfk2c78i40h0ww79vm9v4j6xi2h5i4w9kqh10rs6h2"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-request" ,emacs-request)
|
||||
("emacs-s" ,emacs-s)
|
||||
("emacs-dash" ,emacs-dash)
|
||||
("emacs-org" ,emacs-org)))
|
||||
(home-page "https://github.com/ahungry/org-jira")
|
||||
(synopsis "Syncing between Jira and Org-mode")
|
||||
(description
|
||||
"This package provides an extension to org-mode for syncing issues with
|
||||
JIRA issue servers.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue