diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2019-10-24 00:45:08 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2019-10-24 00:45:08 +0300 |
| commit | 652681200d430990dcb8c4bf83257820a158fdd3 (patch) | |
| tree | 54e1c719935755b6bd3406863f3ae0dbd397064e | |
| parent | guix: Add emacs-helm-tramp. (diff) | |
| download | guix-wigust-cgit/master.tar.gz | |
guix: Add xterm-my.cgit/master
| -rw-r--r-- | guix/wigust/packages/xorg.scm | 11 |
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)))))) |
