From df95c8a694d23a17ee14c60bb1bb2730c76b2af1 Mon Sep 17 00:00:00 2001 From: Simon Streit Date: Thu, 24 Aug 2023 16:33:42 +0200 Subject: siguix: Add emacs-xwiki-mode. * siguix/packages/emacs-xwiki-mode.scm: Add file. --- siguix/packages/emacs-xwiki-mode.scm | 46 ++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 siguix/packages/emacs-xwiki-mode.scm 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 +;;; +;;; 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 . + +(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)))) -- cgit v1.2.3