summaryrefslogtreecommitdiff
path: root/gnu/packages/lxde.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/lxde.scm')
-rw-r--r--gnu/packages/lxde.scm49
1 files changed, 49 insertions, 0 deletions
diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm
new file mode 100644
index 00000000000..6d7580c1b21
--- /dev/null
+++ b/gnu/packages/lxde.scm
@@ -0,0 +1,49 @@
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages lxde)
20 #:use-module (gnu packages glib)
21 #:use-module (gnu packages gtk)
22 #:use-module (gnu packages pkg-config)
23 #:use-module (guix build-system gnu)
24 #:use-module (guix download)
25 #:use-module ((guix licenses) #:prefix license:)
26 #:use-module (guix packages))
27
28(define-public lxappearance
29 (package
30 (name "lxappearance")
31 (version "0.6.1")
32 (source (origin
33 (method url-fetch)
34 (uri (string-append "mirror://sourceforge/project/lxde/"
35 "LXAppearance/" name "-" version ".tar.xz"))
36 (sha256
37 (base32
38 "1phnv1b2jdj2vlibjyc9z01izcf3k5zxj8glsaf0i3vh77zqmqq9"))))
39 (build-system gnu-build-system)
40 (inputs `(("gtk+" ,gtk+-2)))
41 (native-inputs `(("intltool" ,intltool)
42 ("pkg-config" ,pkg-config)))
43 (synopsis "LXDE GTK+ theme switcher")
44 (description "LXAppearance is a desktop-independent GTK+ theme switcher
45able to change themes, icons, and fonts used by GTK+ applications.")
46 (home-page "http://lxde.org")
47 (license license:gpl2+)))
48
49;;; lxde.scm ends here