gnu: libva: Patch a dlopen call, set drivers path.
[jackhill/guix/guix.git] / gnu / packages / libreoffice.scm
CommitLineData
7b4570b4
AE
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
3;;; Copyright © 2014 John Darrington <jmd@gnu.org>
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages libreoffice)
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module ((guix licenses) #:select (mpl2.0))
24 #:use-module (guix build-system gnu)
25 #:use-module (gnu packages boost)
26 #:use-module (gnu packages pkg-config)
27 #:use-module (gnu packages python))
28
29(define-public ixion
30 (package
31 (name "ixion")
32 (version "0.9.1")
33 (source
34 (origin
35 (method url-fetch)
36 (uri (string-append "http://kohei.us/files/ixion/src/libixion-"
37 version ".tar.xz"))
38 (sha256 (base32
39 "18g3nk29ljiqbyi0ml49j2x3f3xrqckdm9i66sw5fxnj7hb5rqvp"))))
40 (build-system gnu-build-system)
41 (native-inputs
42 `(("pkg-config" ,pkg-config)))
43 (inputs
44 `(("mdds" ,mdds)
45 ("python" ,python-2))) ; looks for python.pc, not python3.pc
46 (home-page "https://gitlab.com/ixion/ixion")
47 (synopsis "General purpose formula parser and interpreter")
48 (description "Ixion is a library for calculating the results of formula
49expressions stored in multiple named targets, or \"cells\". The cells can
50be referenced from each other, and the library takes care of resolving
51their dependencies automatically upon calculation.")
52 (license mpl2.0)))