summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2023-08-31 00:57:36 +0200
committerSimon Streit <simon@netpanic.org>2023-08-31 00:58:33 +0200
commit7fbd74c8cdafbd01e9c8de88f3eaf889d932b018 (patch)
treee5a94b8126400cdfbea46e8c9c5a304f4448e391
parentdf95c8a694d23a17ee14c60bb1bb2730c76b2af1 (diff)
siguix: Remove emacs-xwiki-mode.
* siguix/packages/emacs-xwiki-mode.scm: Delete file.
-rw-r--r--siguix/packages/emacs-xwiki-mode.scm46
1 files changed, 0 insertions, 46 deletions
diff --git a/siguix/packages/emacs-xwiki-mode.scm b/siguix/packages/emacs-xwiki-mode.scm
deleted file mode 100644
index cb86a0c..0000000
--- a/siguix/packages/emacs-xwiki-mode.scm
+++ /dev/null
@@ -1,46 +0,0 @@
-;;; 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))))