summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2023-06-19 21:38:52 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:39:32 +0200
commit58b36177e2d10035cbea1a9db7803b0c8cbdce45 (patch)
tree00732a312687d0a25aa64a35dbb0c62c4d47a6cb
parent154881cf84f68e319ae7f40f504f91c0f73ad9c6 (diff)
siguix: Add emacs-lucid.
* siguix/packages/emacs-lucid.scm (emacs-lucid): Reinstate file here.
-rw-r--r--siguix/packages/emacs-lucid.scm43
1 files changed, 43 insertions, 0 deletions
diff --git a/siguix/packages/emacs-lucid.scm b/siguix/packages/emacs-lucid.scm
new file mode 100644
index 0000000..58b08a5
--- /dev/null
+++ b/siguix/packages/emacs-lucid.scm
@@ -0,0 +1,43 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2021--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-lucid)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix git-download)
+ #:use-module (guix build-system gnu)
+ #:use-module (guix build-system glib-or-gtk)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages emacs)
+ #:use-module (gnu packages xorg)
+ #:use-module (guix gexp)
+ #: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"
+ "--without-gconf"
+ "--without-gsettings"
+ #$flags))))
+ (inputs (modify-inputs (package-inputs emacs)
+ (append libxaw)))))