summaryrefslogtreecommitdiff
path: root/siguix/packages/emacs-xwiki-mode.scm
blob: cb86a0c626e95a6a09602d31e1b02f1f2672d9e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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))))