summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMathieu Lirzin <mthl@openmailbox.org>2015-07-15 22:42:25 +0200
committerMathieu Lirzin <mthl@openmailbox.org>2015-07-22 00:15:16 +0200
commit753dc7d311267f782d096e5fc59cc00f55bd9cde (patch)
treecbf0010ca33fb2e631c13730e042b8355f3d3098 /gnu
parentb3527d5d585716915fff6d42931cedcbac22717c (diff)
gnu: Add lxterminal.
* gnu/packages/lxde.scm (lxterminal): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/lxde.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm
index 209fb80ffca..3d63d12863d 100644
--- a/gnu/packages/lxde.scm
+++ b/gnu/packages/lxde.scm
@@ -89,6 +89,31 @@ able to change themes, icons, and fonts used by GTK+ applications.")
89 (home-page "http://lxde.org") 89 (home-page "http://lxde.org")
90 (license license:gpl2+))) 90 (license license:gpl2+)))
91 91
92(define-public lxterminal
93 (package
94 (name "lxterminal")
95 (version "0.2.0")
96 (source (origin
97 (method url-fetch)
98 (uri (string-append "mirror://sourceforge/project/lxde/LXTerminal"
99 "%20%28terminal%20emulator%29/LXTerminal%20"
100 version "/" name "-" version ".tar.gz"))
101 (sha256
102 (base32
103 "1brb506vmnncih8nyvlrckrrn6msbsvz2vwbm7bsqwigcnchwjqp"))))
104 (build-system gnu-build-system)
105 (inputs `(("gtk+" ,gtk+-2)
106 ("vte" ,vte/gtk+-2)))
107 (native-inputs `(("intltool" ,intltool)
108 ("pkg-config" ,pkg-config)))
109 (synopsis "LXDE terminal emulator")
110 (description "LXTerminal is a VTE-based terminal emulator. It supports
111multiple tabs and has only minimal dependencies thus being completely
112desktop-independent. In order to reduce memory usage and increase the
113performance, all instances of the terminal are sharing a single process.")
114 (home-page "http://lxde.org")
115 (license license:gpl2+)))
116
92(define-public menu-cache 117(define-public menu-cache
93 (package 118 (package
94 (name "menu-cache") 119 (name "menu-cache")