diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2020-05-11 07:58:20 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2020-05-11 07:58:20 +0900 |
commit | ff76ffdfa9f4a9bb009c5cfec214a012c9602fff (patch) | |
tree | ed9c687ea0e6a765cba681ced04abad1114e6daf /qkguix/packages/emacs.scm | |
parent | d9770c1f68b0e2508ec38cb44b5da106737ab9c9 (diff) |
Rename from `QKGuix` to `guix-channel`.develop
Diffstat (limited to 'qkguix/packages/emacs.scm')
-rw-r--r-- | qkguix/packages/emacs.scm | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/qkguix/packages/emacs.scm b/qkguix/packages/emacs.scm deleted file mode 100644 index 977b8b2..0000000 --- a/qkguix/packages/emacs.scm +++ /dev/null @@ -1,35 +0,0 @@ -;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo> -;;; -;;; This file is 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 (qkguix packages emacs) - #:use-module (guix packages) - #:use-module (gnu packages emacs) - #:use-module (gnu packages xorg) - #:use-module (guix utils) - #:use-module (srfi srfi-1)) - -(define-public emacs-lucid - (package - (inherit emacs) - (name "emacs-lucid") - (arguments - (substitute-keyword-arguments (package-arguments emacs) - ((#:configure-flags flags) - `(cons* "--with-x-toolkit=lucid" ,flags)))) - (inputs (append `(("libxaw" ,libxaw)) - (alist-delete "gtk+" (package-inputs emacs)))))) |