summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2023-06-19 21:49:54 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:52:16 +0200
commit01d94ad4f4a65e5e870d25854db4030d15617cec (patch)
treebeab3cbfafe7ee0dd028b8bbc8e65eb95318b517
parent4cfbc52b96f222250cb30284d15187c08bdb554a (diff)
siguix: Remove emacs-term-toggle.
* siguix/packages/emacs-term-toggle.scm: Delete file.
-rw-r--r--siguix/packages/emacs-term-toggle.scm49
1 files changed, 0 insertions, 49 deletions
diff --git a/siguix/packages/emacs-term-toggle.scm b/siguix/packages/emacs-term-toggle.scm
deleted file mode 100644
index 191b38d..0000000
--- a/siguix/packages/emacs-term-toggle.scm
+++ /dev/null
@@ -1,49 +0,0 @@
-;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2021, 2022 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-term-toggle)
- #:use-module ((guix licenses) #:prefix license:)
- #:use-module (guix packages)
- #:use-module (guix git-download)
- #:use-module (guix build-system emacs)
- #:use-module (gnu packages))
-
-(define-public emacs-term-toggle
- (let ((commit "8fdac0e5b2c269a04ef574ce32a7aaf2ed711565")
- (revision "0"))
- (package
- (name "emacs-term-toggle")
- (version (git-version "0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/amno1/emacs-term-toggle")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "08bp03cczkb3srssxwzyv8yfxff80l8gvncjica585513yhaz1wq"))))
- (build-system emacs-build-system)
- (home-page "https://github.com/amno1/emacs-term-toggle")
- (synopsis "Quake-style popup console for Emacs")
- (description "Term-toggle lets you quickly toggle shells that
-come built-in with Emacs. Currently it can toggle shell, term,
-ansi-term, eshell, and ielm. You can put each one on a keyboard
-shortcut and toggle a console off and on as needed. The console will
-be opened in the current buffer's default directory.")
- (license license:gpl3+))))