diff options
author | Roman Scherer <roman@burningswell.com> | 2025-04-14 09:24:48 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-30 18:59:15 +0200 |
commit | e9cd3af90d9ae82bf8818bde1a6431c65b1a13fe (patch) | |
tree | 8a8b0c7f68b62a74a2a099fd78eb120e02ca56e6 | |
parent | 051e1c511a36b20c9ad5cdb955f3dc2e5df6981f (diff) |
gnu: Add emacs-jira.
* gnu/packages/emacs-xyz.scm (emacs-jira): New variable.
Change-Id: I7846eeea3f4f9c06f75d768c7264656a69afdd96
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 76e2d22104..e3c228df73 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -12341,6 +12341,31 @@ generates it as a string. Please see the homepage for usage examples.") the locations of docstrings, arguments, and functions.") (license license:gpl3+))) +(define-public emacs-jira + (package + (name "emacs-jira") + (version "0.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/unmonoqueteclea/jira.el") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zg7qx05i92xpsa43y9gsxbn08gmzng88dvkva7y70zvrzx58zz2")))) + (build-system emacs-build-system) + (arguments (list #:tests? #f)) ; no tests + (propagated-inputs (list emacs-magit + emacs-request + emacs-tablist + emacs-transient)) + (home-page "https://github.com/unmonoqueteclea/jira.el") + (synopsis "Emacs Interface to Jira") + (description "This package allows you to visualuze and manipulate Jira +issues from Emacs.") + (license license:gpl3+))) + (define-public emacs-company-jedi (package (name "emacs-company-jedi") |