guix-register: Add explicit libgcrypt initialization.
[jackhill/guix/guix.git] / gnu / packages / glib.scm
CommitLineData
3889a82e 1;;; GNU Guix --- Functional package management for GNU
00585a55 2;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
d6b8cb5c
AE
3;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
4;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
3889a82e
NK
5;;;
6;;; This file is part of GNU Guix.
7;;;
8;;; GNU Guix is free software; you can redistribute it and/or modify it
9;;; under the terms of the GNU General Public License as published by
10;;; the Free Software Foundation; either version 3 of the License, or (at
11;;; your option) any later version.
12;;;
13;;; GNU Guix is distributed in the hope that it will be useful, but
14;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;;; GNU General Public License for more details.
17;;;
18;;; You should have received a copy of the GNU General Public License
19;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
943f33a3 21(define-module (gnu packages glib)
d6b8cb5c
AE
22 #:use-module ((guix licenses)
23 #:renamer (symbol-prefix-proc 'license:))
3889a82e
NK
24 #:use-module (guix packages)
25 #:use-module (guix download)
26 #:use-module (guix build-system gnu)
943f33a3
LC
27 #:use-module (gnu packages)
28 #:use-module (gnu packages base)
9ceb630c 29 #:use-module (gnu packages bison)
943f33a3 30 #:use-module (gnu packages compression)
9ceb630c 31 #:use-module (gnu packages flex)
1dba6407 32 #:use-module (gnu packages gettext)
9ceb630c 33 #:use-module (gnu packages gtk)
943f33a3 34 #:use-module (gnu packages libffi)
d6b8cb5c 35 #:use-module (gnu packages perl)
943f33a3
LC
36 #:use-module (gnu packages pkg-config)
37 #:use-module (gnu packages python)
7bc5cc2b 38 #:use-module (gnu packages xml)
5aa601a3 39 #:use-module (gnu packages bash)
80370441
LC
40 #:use-module (gnu packages file)
41 #:use-module (gnu packages xorg)
a5a7d374 42 #:use-module (gnu packages m4)
943f33a3 43
80370441
LC
44 ;; Export variables up-front to allow circular dependency with the 'xorg'
45 ;; module.
46 #:export (dbus
47 glib
6ac6a6b9 48 gobject-introspection
80370441
LC
49 dbus-glib
50 intltool
a5a7d374
LC
51 itstool
52 libsigc++
53 glibmm))
80370441
LC
54
55(define dbus
943f33a3
LC
56 (package
57 (name "dbus")
58 (version "1.6.4")
59 (source (origin
60 (method url-fetch)
61 (uri
62 (string-append "http://dbus.freedesktop.org/releases/dbus/dbus-"
63 version ".tar.gz"))
64 (sha256
65 (base32
01eafd38
LC
66 "1wacqyfkcpayg7f8rvx9awqg275n5pksxq5q7y21lxjx85x6pfjz"))
67 (patches (list (search-patch "dbus-localstatedir.patch")))))
943f33a3 68 (build-system gnu-build-system)
8eaa8a3b
LC
69 (arguments
70 '(#:configure-flags (list ;; Install the system bus socket under /var.
71 "--localstatedir=/var"
72
73 ;; XXX: Fix the following to allow system-wide
74 ;; config.
75 ;; "--sysconfdir=/etc"
76
01eafd38 77 "--with-session-socket-dir=/tmp")))
943f33a3 78 (inputs
d6b8cb5c 79 `(("expat" ,expat)
8eaa8a3b 80 ("pkg-config" ,pkg-config)
80370441
LC
81
82 ;; Add a dependency on libx11 so that 'dbus-launch' has support for
83 ;; '--autolaunch'.
84 ("libx11" ,libx11)))
85
943f33a3
LC
86 (home-page "http://dbus.freedesktop.org/")
87 (synopsis "Message bus for inter-process communication (IPC)")
88 (description
89 "D-Bus is a message bus system, a simple way for applications to
90talk to one another. In addition to interprocess communication, D-Bus
91helps coordinate process lifecycle; it makes it simple and reliable to
92code a \"single instance\" application or daemon, and to launch
93applications and daemons on demand when their services are needed.
94
95D-Bus supplies both a system daemon (for events such as \"new hardware
96device added\" or \"printer queue changed\") and a
97per-user-login-session daemon (for general IPC needs among user
98applications). Also, the message bus is built on top of a general
99one-to-one message passing framework, which can be used by any two apps
100to communicate directly (without going through the message bus
101daemon). Currently the communicating applications are on one computer,
102or through unencrypted TCP/IP suitable for use behind a firewall with
103shared NFS home directories.")
d6b8cb5c 104 (license license:gpl2+))) ; or Academic Free License 2.1
3889a82e 105
80370441 106(define glib
3889a82e
NK
107 (package
108 (name "glib")
00585a55 109 (version "2.39.1")
3889a82e
NK
110 (source (origin
111 (method url-fetch)
785db4d8 112 (uri (string-append "mirror://gnome/sources/"
d274f499 113 name "/" (string-take version 4) "/"
943f33a3 114 name "-" version ".tar.xz"))
3889a82e 115 (sha256
00585a55 116 (base32 "0lqi6z47068vgh91fm59jn0kq969wf3g2q8k4m33jsb0amprg36h"))
01eafd38
LC
117 (patches (list (search-patch "glib-tests-homedir.patch")
118 (search-patch "glib-tests-desktop.patch")
93a3d8f6
LC
119 (search-patch "glib-tests-prlimit.patch")
120 (search-patch "glib-tests-newnet.patch")))))
3889a82e 121 (build-system gnu-build-system)
943f33a3
LC
122 (outputs '("out" ; everything
123 "doc")) ; 20 MiB of GTK-Doc reference
3889a82e
NK
124 (inputs
125 `(("coreutils" ,coreutils)
3889a82e 126 ("libffi" ,libffi)
c4c4cc05
JD
127 ("zlib" ,zlib)
128 ("tzdata" ,tzdata))) ; for tests/gdatetime.c
129 (native-inputs
130 `(("gettext" ,gnu-gettext)
131 ("dbus" ,dbus) ; for GDBus tests
3889a82e 132 ("pkg-config" ,pkg-config)
ee3e314b 133 ("python" ,python-wrapper)
943f33a3 134 ("perl" ,perl) ; needed by GIO tests
c4c4cc05 135 ("bash" ,bash)))
943f33a3 136 (arguments
01eafd38 137 '(#:phases (alist-cons-before
943f33a3
LC
138 'build 'pre-build
139 (lambda* (#:key inputs outputs #:allow-other-keys)
7bc5cc2b
LC
140 ;; For tests/gdatetime.c.
141 (setenv "TZDIR"
142 (string-append (assoc-ref inputs "tzdata")
143 "/share/zoneinfo"))
144
145 ;; Some tests want write access there.
146 (setenv "XDG_CACHE_HOME" (getcwd))
147
943f33a3
LC
148 (substitute* '("glib/gspawn.c"
149 "glib/tests/utils.c"
150 "tests/spawn-test.c")
7bc5cc2b 151 (("/bin/sh")
d274f499 152 (string-append (assoc-ref inputs "bash") "/bin/sh"))))
943f33a3
LC
153 %standard-phases)
154
155 ;; Note: `--docdir' and `--htmldir' are not honored, so work around it.
156 #:configure-flags (list (string-append "--with-html-dir="
157 (assoc-ref %outputs "doc")
00585a55
LC
158 "/share/gtk-doc"))
159
160 ;; In 'gio/tests', 'gdbus-test-codegen-generated.h' is #included in a
161 ;; file that gets compiled possibly before it has been fully generated.
162 #:parallel-tests? #f))
ce2df078
LC
163
164 (native-search-paths
165 ;; This variable is not really "owned" by GLib, but several related
166 ;; packages refer to it: gobject-introspection's tools use it as a search
167 ;; path for .gir files, and it's also a search path for schemas produced
168 ;; by 'glib-compile-schemas'.
169 (list (search-path-specification
170 (variable "XDG_DATA_DIRS")
171 (directories '("share")))))
172 (search-paths native-search-paths)
173
f50d2669 174 (synopsis "Thread-safe general utility library; basis of GTK+ and GNOME")
3889a82e
NK
175 (description
176 "GLib provides data structure handling for C, portability wrappers,
177and interfaces for such runtime functionality as an event loop, threads,
178dynamic loading, and an object system.")
179 (home-page "http://developer.gnome.org/glib/")
d6b8cb5c 180 (license license:lgpl2.0+))) ; some files are under lgpl2.1+
71eb5c10 181
6ac6a6b9 182(define gobject-introspection
9ceb630c
CR
183 (package
184 (name "gobject-introspection")
185 (version "1.38.0")
186 (source (origin
187 (method url-fetch)
188 (uri (string-append "http://ftp.gnome.org/pub/GNOME/sources/"
189 "gobject-introspection/"
190 (substring version 0 (string-rindex version #\.))
191 "/gobject-introspection-"
192 version ".tar.xz"))
193 (sha256
503c5f6d
CR
194 (base32 "0wvxyvgajmms2bb6k3pf1rdpnd79xdxamykzvxzmcyn1ag9yax9m"))
195 (patches (list (search-patch "gobject-introspection-cc.patch")))))
9ceb630c
CR
196 (build-system gnu-build-system)
197 (inputs
198 `(("bison" ,bison)
199 ("cairo" ,cairo)
200 ("flex" ,flex)
201 ("glib" ,glib)
9ceb630c
CR
202 ("pkg-config" ,pkg-config)
203 ("python-2" ,python-2)))
af949e8e
CR
204 (propagated-inputs
205 `(;; In practice, GIR users will need libffi when using
206 ;; gobject-introspection.
207 ("libffi" ,libffi)))
9ceb630c
CR
208 (arguments
209 `(#:phases
d4bf49b1
EB
210 (alist-cons-before
211 'configure 'patch-paths
212 (lambda _
503c5f6d 213 (substitute* "giscanner/sourcescanner.py"
d4bf49b1 214 (("GUIX_GCC_PATH") (which "gcc"))))
9ceb630c
CR
215 %standard-phases)))
216 (home-page "https://wiki.gnome.org/GObjectIntrospection")
217 (synopsis "Generate interface introspection data for GObject libraries")
218 (description
219 "GObject introspection is a middleware layer between C libraries (using
220GObject) and language bindings. The C library can be scanned at compile time
221and generate a metadata file, in addition to the actual native C library. Then
222at runtime, language bindings can read this metadata and automatically provide
223bindings to call into the C library.")
224 ; Some bits are distributed under the LGPL2+, others under the GPL2+
225 (license license:gpl2+)))
226
80370441 227(define intltool
71eb5c10
LC
228 (package
229 (name "intltool")
d6b8cb5c 230 (version "0.50.2")
71eb5c10
LC
231 (source (origin
232 (method url-fetch)
d6b8cb5c
AE
233 (uri (string-append "https://launchpad.net/intltool/trunk/"
234 version "/+download/intltool-"
235 version ".tar.gz"))
71eb5c10
LC
236 (sha256
237 (base32
d6b8cb5c 238 "01j4yd7i84n9nk4ccs6yifg84pp68nr9by57jdbhj7dpdxf5rwk7"))))
71eb5c10 239 (build-system gnu-build-system)
71eb5c10 240 (propagated-inputs
107b415e
LC
241 `(;; Propagate gettext because users expect it to be there, and so does
242 ;; the `intltool-update' script.
1dba6407 243 ("gettext" ,gnu-gettext)
107b415e 244
5aa601a3
LC
245 ;; `file' is used by `intltool-update' too.
246 ("file" ,file)
247
e33d9d6f 248 ("perl-xml-parser" ,perl-xml-parser)
107b415e 249 ("perl" ,perl)))
d6b8cb5c
AE
250 (home-page "https://launchpad.net/intltool/+download")
251 (synopsis "Tools to centralise translations of different file formats")
71eb5c10 252 (description
d6b8cb5c 253 "intltool is a set of tools to centralise translations of many different
71eb5c10
LC
254file formats using GNU gettext-compatible PO files.
255
256The intltool collection can be used to do these things:
257
258 Extract translatable strings from various source files (.xml.in,
259 glade, .desktop.in, .server.in, .oaf.in).
260
261 Collect the extracted strings together with messages from traditional
262 source files (.c, .h) in po/$(PACKAGE).pot.
263
264 Merge back the translations from .po files into .xml, .desktop and
265 oaf files. This merge step will happen at build resp. installation time.")
d6b8cb5c 266 (license license:gpl2+)))
24b5c463 267
80370441 268(define itstool
20a26ff5
CR
269 (package
270 (name "itstool")
271 (version "1.2.0")
272 (source (origin
273 (method url-fetch)
274 (uri (string-append "http://files.itstool.org/itstool/itstool-"
275 version ".tar.bz2"))
276 (sha256
277 (base32
278 "1akq75aflihm3y7js8biy7b5mw2g11vl8yq90gydnwlwp0zxdzj6"))))
279 (build-system gnu-build-system)
f922fc42
AE
280 (propagated-inputs
281 `(("libxml2" ,libxml2)
282 ("python-2" ,python-2)))
20a26ff5
CR
283 (home-page "http://www.itstool.org")
284 (synopsis "Tool to translate XML documents with PO files")
285 (description
286 "ITS Tool allows you to translate your XML documents with PO files, using
287rules from the W3C Internationalization Tag Set (ITS) to determine what to
288translate and how to separate it into PO file messages.
289
290PO files are the standard translation format for GNU and other Unix-like
291systems. They present translatable information as discrete messages, allowing
292each message to be translated independently. In contrast to whole-page
293translation, translating with a message-based format like PO means you can
294easily track changes to the source document down to the paragraph. When new
295strings are added or existing strings are modified, you only need to update the
296corresponding messages.
297
298ITS Tool is designed to make XML documents translatable through PO files by
299applying standard ITS rules, as well as extension rules specific to ITS Tool.
300ITS also provides an industry standard way for authors to override translation
301information in their documents, such as whether a particular element should be
302translated.")
a129e0d8 303 (license license:gpl3+)))
20a26ff5 304
80370441 305(define dbus-glib
24b5c463
AE
306 (package
307 (name "dbus-glib")
308 (version "0.100.2")
309 (source (origin
310 (method url-fetch)
311 (uri
312 (string-append "http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-"
313 version ".tar.gz"))
314 (sha256
315 (base32
316 "1ibav91yg70f2l3l18cr0hf4mna1h9d4mrg0c60w4l8zjbd45fx5"))))
317 (build-system gnu-build-system)
318 (inputs
319 `(("dbus" ,dbus)
320 ("expat" ,expat)
321 ("glib" ,glib)
322 ("pkg-config" ,pkg-config)))
323 (home-page "http://dbus.freedesktop.org/doc/dbus-glib/")
324 (synopsis "D-Bus GLib bindings")
325 (description
326 "GLib bindings for D-Bus. The package is obsolete and superseded
327by GDBus included in Glib.")
328 (license license:gpl2))) ; or Academic Free License 2.1
a5a7d374
LC
329
330(define libsigc++
331 (package
332 (name "libsigc++")
333 (version "2.3.1")
334 (source (origin
335 (method url-fetch)
336 (uri (string-append "mirror://gnome/sources/libsigc++/2.3/libsigc++-"
337 version ".tar.xz"))
338 (sha256
339 (base32
340 "14q3sq6d43f6wfcmwhw4v1aal4ba0h5x9v6wkxy2dnqznd95il37"))))
341 (build-system gnu-build-system)
342 (inputs `(("pkg-config" ,pkg-config)))
343 (native-inputs `(("m4" ,m4)))
344 (home-page "http://libsigc.sourceforge.net/")
345 (synopsis "Type-safe callback system for standard C++")
346 (description
347 "libsigc++ implements a type-safe callback system for standard C++. It
348allows you to define signals and to connect those signals to any callback
349function, either global or a member function, regardless of whether it is
350static or virtual.
351
352It also contains adaptor classes for connection of dissimilar callbacks and
353has an ease of use unmatched by other C++ callback libraries.")
354 (license license:lgpl2.1+)))
355
356(define glibmm
357 (package
358 (name "glibmm")
359 (version "2.37.7")
360 (source (origin
361 (method url-fetch)
362 (uri (string-append "mirror://gnome/sources/glibmm/2.37/glibmm-"
363 version ".tar.xz"))
364 (sha256
365 (base32
366 "0mms4yl5izsya1135772z4jkb184ss86x0wlg6dm7yvwxvb6bjlw"))))
367 (build-system gnu-build-system)
368 (arguments
369 `(#:phases (alist-cons-before
370 'build 'pre-build
371 (lambda _
372 ;; This test uses /etc/fstab as an example file to read
373 ;; from; choose a better example.
374 (substitute* "tests/giomm_simple/main.cc"
375 (("/etc/fstab")
376 (string-append (getcwd)
377 "/tests/giomm_simple/main.cc")))
378
379 ;; This test does a DNS lookup, and then expects to be able
380 ;; to open a TLS session; just skip it.
381 (substitute* "tests/giomm_tls_client/main.cc"
382 (("Gio::init.*$")
383 "return 77;\n")))
384 %standard-phases)))
385 (inputs `(("pkg-config" ,pkg-config)))
386 (propagated-inputs
387 `(("libsigc++" ,libsigc++)
388 ("glib" ,glib)))
389 (home-page "http://gtkmm.org/")
390 (synopsis "C++ interface to the GLib library")
391 (description
392 "glibmm provides a C++ programming interface to the part of GLib that are
393useful for C++.")
394 (license license:lgpl2.1+)))