From 7b4570b4fb842932dbc64d8cd2608b37c9cb359d Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Mon, 27 Apr 2015 22:09:15 +0200 Subject: gnu: Add ixion. * gnu/packages/libreoffice.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. Co-authored-by: John Darrington --- gnu/packages/libreoffice.scm | 52 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 gnu/packages/libreoffice.scm (limited to 'gnu/packages') diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm new file mode 100644 index 0000000000..97b464d0bc --- /dev/null +++ b/gnu/packages/libreoffice.scm @@ -0,0 +1,52 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2015 Andreas Enge +;;; Copyright © 2014 John Darrington +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages libreoffice) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module ((guix licenses) #:select (mpl2.0)) + #:use-module (guix build-system gnu) + #:use-module (gnu packages boost) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages python)) + +(define-public ixion + (package + (name "ixion") + (version "0.9.1") + (source + (origin + (method url-fetch) + (uri (string-append "http://kohei.us/files/ixion/src/libixion-" + version ".tar.xz")) + (sha256 (base32 + "18g3nk29ljiqbyi0ml49j2x3f3xrqckdm9i66sw5fxnj7hb5rqvp")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("mdds" ,mdds) + ("python" ,python-2))) ; looks for python.pc, not python3.pc + (home-page "https://gitlab.com/ixion/ixion") + (synopsis "General purpose formula parser and interpreter") + (description "Ixion is a library for calculating the results of formula +expressions stored in multiple named targets, or \"cells\". The cells can +be referenced from each other, and the library takes care of resolving +their dependencies automatically upon calculation.") + (license mpl2.0))) -- cgit v1.2.3 kages/gps.scm?id=ada35de38f6b04bbc3c5d0bed198cf22e5fa22d9'>gnu: scons: Move to (gnu packages build-tools)....Marius Bakke 2022-07-31gnu: qttools: Rename to qttools-5....Maxim Cournoyer 2022-07-31gnu: qtsvg: Rename variable to qtsvg-5....Maxim Cournoyer 2022-07-17gnu: gama: Update to 2.21....Efraim Flashner 2022-06-20gnu: gpxsee: Update to 11.1....Nikolay Korotkiy 2022-04-29gnu: gama: Update to 2.19....Efraim Flashner 2022-04-13gnu: gama: Update to 2.18....Efraim Flashner 2022-02-08gnu: gpxsee: Update to 10.3....Nikolay Korotkiy via Guix-patches via 2022-01-20gnu: gama: Update to 2.17....Efraim Flashner 2021-12-13gnu: Simplify package inputs....Ludovic Courtès 2021-12-10Merge remote-tracking branch 'signed/master' into core-updatesMathieu Othacehe 2021-12-10gnu: gpxsee: Update to 10.0....Nikolay Korotkiy 2021-10-12Merge remote-tracking branch 'origin/master' into core-updates-frozen.Mathieu Othacehe 2021-10-04gnu: gpsd: Update to 3.23.1....Tobias Geerinckx-Rice 2021-09-25gnu: Consolidate duplicate copyright names....Greg Hogan 2021-09-22gnu: gama: Update to 2.15....Efraim Flashner 2021-08-12Merge branch 'master' into core-updates-frozen...Marius Bakke 2021-07-27gnu: GPSD: Update to 3.23....Leo Famulari 2021-06-19Merge branch 'master' into core-updates...Marius Bakke 2021-06-14gnu: Rename qtbase to qtbase-5....Maxim Cournoyer