gnu: Add perl-xml-simple.
[jackhill/guix/guix.git] / gnu / packages / gnome.scm
CommitLineData
995b7261
AE
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
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 gnome)
d9c1a22b 20 #:use-module ((guix licenses) #:select (gpl2+ lgpl2.1+))
995b7261
AE
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
24 #:use-module (gnu packages glib)
d9c1a22b
AE
25 #:use-module (gnu packages gtk)
26 #:use-module (gnu packages libpng)
995b7261
AE
27 #:use-module (gnu packages pkg-config)
28 #:use-module (gnu packages python)
29 #:use-module (gnu packages xml))
30
31(define-public gnome-doc-utils
32 (package
33 (name "gnome-doc-utils")
34 (version "0.20.10")
35 (source
36 (origin
37 (method url-fetch)
38 (uri (string-append "mirror://gnome/sources/" name "/0.20/"
39 name "-" version ".tar.xz"))
40 (sha256
41 (base32
42 "19n4x25ndzngaciiyd8dd6s2mf9gv6nv3wv27ggns2smm7zkj1nb"))))
43 (build-system gnu-build-system)
44 (inputs
45 `(("intltool" ,intltool)
46 ("libxml2" ,libxml2)
47 ("libxslt" ,libxslt)
48 ("pkg-config" ,pkg-config)
49 ("python-2" ,python-2)))
50 (arguments
51 `(#:tests? #f)) ; tries to load http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd
52 (home-page "https://wiki.gnome.org/GnomeDocUtils")
53 (synopsis
54 "Documentation utilities for the Gnome project")
55 (description
56 "Gnome-doc-utils is a collection of documentation utilities for the
57Gnome project. It includes xml2po tool which makes it easier to translate
58and keep up to date translations of documentation.")
59 (license gpl2+))) ; xslt under lgpl
d9c1a22b 60
22e32e69
AE
61(define-public gsettings-desktop-schemas
62 (package
63 (name "gsettings-desktop-schemas")
64 (version "3.10.0")
65 (source
66 (origin
67 (method url-fetch)
68 (uri (string-append "mirror://gnome/sources/" name "/"
69 (string-copy version 0 (string-rindex version #\.)) "/"
70 name "-" version ".tar.xz"))
71 (sha256
72 (base32
73 "1km8qxwrzvravmg8j680qv64bwnwbdgrmy8bqmhs0dgxn2b1as6a"))))
74 (build-system gnu-build-system)
75 (inputs
76 `(("glib" ,glib)
77 ("intltool" ,intltool)
78 ("pkg-config" ,pkg-config)))
79 (home-page "https://launchpad.net/gsettings-desktop-schemas")
80 (synopsis
81 "GNOME settings for various desktop components")
82 (description
83 "Gsettings-desktop-schemas contains a collection of GSettings schemas
84for settings shared by various components of the GNOME desktop.")
85 (license lgpl2.1+)))
86
d9c1a22b
AE
87(define-public libnotify
88 (package
89 (name "libnotify")
90 (version "0.7.6")
91 (source
92 (origin
93 (method url-fetch)
94 (uri (string-append "mirror://gnome/sources/" name "/"
95 (string-copy version 0 (string-rindex version #\.)) "/"
96 name "-" version ".tar.xz"))
97 (sha256
98 (base32
99 "0dyq8zgjnnzcah31axnx6afb21kl7bks1gvrg4hjh3nk02j1rxhf"))))
100 (build-system gnu-build-system)
101 (inputs
102 `(("gdk-pixbuf" ,gdk-pixbuf)
103 ("glib" ,glib)
104 ("gtk+" ,gtk+)
105 ("libpng" ,libpng)
106 ("pkg-config" ,pkg-config)))
107 (home-page "https://developer-next.gnome.org/libnotify/")
108 (synopsis
109 "GNOME desktop notification library")
110 (description
111 "Libnotify is a library that sends desktop notifications to a
112notification daemon, as defined in the Desktop Notifications spec. These
113notifications can be used to inform the user about an event or display
114some form of information without getting in the user's way.")
115 (license lgpl2.1+)))