gnu: Add gnome-doc-utils.
[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)
20 #:use-module ((guix licenses) #:select (gpl2+))
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
24 #:use-module (gnu packages glib)
25 #:use-module (gnu packages pkg-config)
26 #:use-module (gnu packages python)
27 #:use-module (gnu packages xml))
28
29(define-public gnome-doc-utils
30 (package
31 (name "gnome-doc-utils")
32 (version "0.20.10")
33 (source
34 (origin
35 (method url-fetch)
36 (uri (string-append "mirror://gnome/sources/" name "/0.20/"
37 name "-" version ".tar.xz"))
38 (sha256
39 (base32
40 "19n4x25ndzngaciiyd8dd6s2mf9gv6nv3wv27ggns2smm7zkj1nb"))))
41 (build-system gnu-build-system)
42 (inputs
43 `(("intltool" ,intltool)
44 ("libxml2" ,libxml2)
45 ("libxslt" ,libxslt)
46 ("pkg-config" ,pkg-config)
47 ("python-2" ,python-2)))
48 (arguments
49 `(#:tests? #f)) ; tries to load http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd
50 (home-page "https://wiki.gnome.org/GnomeDocUtils")
51 (synopsis
52 "Documentation utilities for the Gnome project")
53 (description
54 "Gnome-doc-utils is a collection of documentation utilities for the
55Gnome project. It includes xml2po tool which makes it easier to translate
56and keep up to date translations of documentation.")
57 (license gpl2+))) ; xslt under lgpl