summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2023-08-24 16:33:42 +0200
committerSimon Streit <simon@netpanic.org>2023-08-24 16:33:42 +0200
commitdf95c8a694d23a17ee14c60bb1bb2730c76b2af1 (patch)
tree54a39739218e89dada9dfd9cf42b9eaf6d219656
parent6fa240b8c363628e4479245c069a336a328c4418 (diff)
siguix: Add emacs-xwiki-mode.
* siguix/packages/emacs-xwiki-mode.scm: Add file.
-rw-r--r--siguix/packages/emacs-xwiki-mode.scm46
1 files changed, 46 insertions, 0 deletions
diff --git a/siguix/packages/emacs-xwiki-mode.scm b/siguix/packages/emacs-xwiki-mode.scm
new file mode 100644
index 0000000..cb86a0c
--- /dev/null
+++ b/siguix/packages/emacs-xwiki-mode.scm
@@ -0,0 +1,46 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2023 Simon Streit <simon@netpanic.org>
+;;;
+;;; This file is NOT part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (siguix packages emacs-xwiki-mode)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix packages)
+ #:use-module (guix git-download)
+ #:use-module (guix build-system emacs))
+
+(define-public emacs-xwiki-mode
+ (let ((commit "580e65296ca0ffb20270610ef16bfeb8850fc7c8")
+ (revision "0")
+ (version "0.0.0"))
+ (package
+ (name "emacs-xwiki-mode")
+ (version (git-version "0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference (url "https://github.com/ackerleytng/xwiki-mode")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0izsj9krl4lhm33w9hh6gjihns4lrgaf40qiiif43n05jha7fj0z"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/ackerleytng/xwiki-mode")
+ (synopsis "Emacs Major mode for XWiki files")
+ (description
+ "Xwiki-mode is a majore mode for editing XWiki-formatted text files in
+Emacs.")
+ (license license:gpl3))))