summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2019-10-24 00:45:08 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2019-10-24 00:45:08 +0300
commit652681200d430990dcb8c4bf83257820a158fdd3 (patch)
tree54e1c719935755b6bd3406863f3ae0dbd397064e
parentguix: Add emacs-helm-tramp. (diff)
downloadguix-wigust-cgit/master.tar.gz
guix: Add xterm-my.cgit/master
-rw-r--r--guix/wigust/packages/xorg.scm11
1 files changed, 11 insertions, 0 deletions
diff --git a/guix/wigust/packages/xorg.scm b/guix/wigust/packages/xorg.scm
index 93949d9..9b6cd8b 100644
--- a/guix/wigust/packages/xorg.scm
+++ b/guix/wigust/packages/xorg.scm
@@ -120,3 +120,14 @@ MIT-SCREEN-SAVER extension to the X11 protocol.")
originally designed for surf but also usable with many other applications,
i.e. @code{st}, @code{uzbl}, @code{urxvt} and @code{xterm}.")
(license license:isc)))
+
+(define-public xterm-my
+ (package
+ (inherit xterm)
+ (name "xterm-my")
+ (arguments
+ (substitute-keyword-arguments
+ (package-arguments xterm)
+ ((#:configure-flags flags)
+ ;; XXX: Broken flags: "--enable-double-buffer" "--with-utempter"
+ `(cons "--enable-exec-xterm" ,flags))))))