gnu: Add libfm-extra.
[jackhill/guix/guix.git] / gnu / packages / lxde.scm
CommitLineData
889e57f4
ML
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)
83365461 20 #:use-module (gnu packages autotools)
889e57f4
ML
21 #:use-module (gnu packages glib)
22 #:use-module (gnu packages gtk)
23 #:use-module (gnu packages pkg-config)
24 #:use-module (guix build-system gnu)
25 #:use-module (guix download)
26 #:use-module ((guix licenses) #:prefix license:)
27 #:use-module (guix packages))
28
83365461
ML
29(define-public libfm-extra
30 (package
31 (name "libfm-extra")
32 (version "1.2.3")
33 (source (origin
34 (method url-fetch)
35 (uri (string-append "mirror://sourceforge/project/pcmanfm/"
36 "PCManFM%20%2B%20Libfm%20%28tarball%20"
37 "release%29/LibFM/libfm-" version ".tar.xz"))
38 (sha256
39 (base32
40 "1ygvw52262r3jp1f45m9cdpx5xgvd4rkyfszslfqvg2c99ig34n6"))))
41 (build-system gnu-build-system)
42 (arguments '(#:configure-flags '("--with-extra-only")))
43 (inputs `(("glib" ,glib)))
44 (native-inputs `(("intltool" ,intltool)
45 ("libtool" ,libtool)
46 ("pkg-config" ,pkg-config)))
47 (synopsis "File management support (extra library)")
48 (description "LibFM provides file management functions built on top of
49Glib/GIO giving a higher-level API. This package contains standalone library
50which extends libfm.")
51 (home-page "http://lxde.org")
52 (license license:gpl2+)))
53
889e57f4
ML
54(define-public lxappearance
55 (package
56 (name "lxappearance")
57 (version "0.6.1")
58 (source (origin
59 (method url-fetch)
3ab98da1 60 (uri (string-append "mirror://sourceforge/project/lxde/"
889e57f4
ML
61 "LXAppearance/" name "-" version ".tar.xz"))
62 (sha256
63 (base32
64 "1phnv1b2jdj2vlibjyc9z01izcf3k5zxj8glsaf0i3vh77zqmqq9"))))
65 (build-system gnu-build-system)
66 (inputs `(("gtk+" ,gtk+-2)))
67 (native-inputs `(("intltool" ,intltool)
68 ("pkg-config" ,pkg-config)))
69 (synopsis "LXDE GTK+ theme switcher")
70 (description "LXAppearance is a desktop-independent GTK+ theme switcher
71able to change themes, icons, and fonts used by GTK+ applications.")
72 (home-page "http://lxde.org")
73 (license license:gpl2+)))
74
75;;; lxde.scm ends here