From ff76ffdfa9f4a9bb009c5cfec214a012c9602fff Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Mon, 11 May 2020 07:58:20 +0900 Subject: Rename from `QKGuix` to `guix-channel`. --- qkguix/packages/emacs.scm | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 qkguix/packages/emacs.scm (limited to 'qkguix/packages/emacs.scm') 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 -;;; -;;; 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 . - -(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)))))) -- cgit v1.2.3