aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2020-04-26 12:00:50 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2020-04-26 12:09:16 +0900
commit6492fc26354c41886b221c2a0a5b464862321502 (patch)
treea33bd3be752385b1edacfa797b69447b7191efed
parent21ad20a4706bbd41493919dda89e100f1bd7b521 (diff)
qkguix: Add emacs-lucid
-rw-r--r--qkguix/packages/emacs.scm31
1 files changed, 31 insertions, 0 deletions
diff --git a/qkguix/packages/emacs.scm b/qkguix/packages/emacs.scm
new file mode 100644
index 0000000..0c74a8d
--- /dev/null
+++ b/qkguix/packages/emacs.scm
@@ -0,0 +1,31 @@
+;;; 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 (guix utils))
+
+(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))))))