summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2023-06-19 21:51:47 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 22:00:44 +0200
commit4d0910169962ba3c6fdcb0df6802f2495bc2f3f8 (patch)
tree59cf8104ac563dda6f0cc7e0cd396be1a4388bb3
parentd07ed232cb64265135e1155742432b1aa4e1b9fc (diff)
siguix: Add emacs-elmine.
* siguix/packages/emacs-xyz.scm (emacs-elmine): New variable.
-rw-r--r--siguix/packages/emacs-xyz.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/siguix/packages/emacs-xyz.scm b/siguix/packages/emacs-xyz.scm
index 84dd769..ff069b9 100644
--- a/siguix/packages/emacs-xyz.scm
+++ b/siguix/packages/emacs-xyz.scm
@@ -320,3 +320,28 @@ be opened in the current buffer's default directory.")
the Emacs default configuration in uncontroversial ways that nearly
everyone can agree upon.")
(license license:gpl3+))))
+
+(define-public emacs-elmine
+ (let ((commit "c78cc8705c2dffbf649b858f02b5028225943482")
+ (revision "0"))
+ (package
+ (name "emacs-elmine")
+ (version (git-version "0.3" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/leoc/elmine")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "05z9v3lcc0mm40k0y08v8mhnlxb4krlgj6zghfavwwz6nhxn61g3"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-s))
+ (home-page "https://github.com/leoc/elmine")
+ (synopsis "Access redmine Rest API via elisp in Emacs")
+ (description "This is a simple package to interact with the redmine restful
+webservice easily. Essentially it abstracts most API calls to the
+Redmine API.")
+ (license license:gpl3+))))