guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add ixion.


From: Andreas Enge
Subject: 01/01: gnu: Add ixion.
Date: Mon, 27 Apr 2015 20:12:27 +0000

andreas pushed a commit to branch master
in repository guix.

commit 7b4570b4fb842932dbc64d8cd2608b37c9cb359d
Author: Andreas Enge <address@hidden>
Date:   Mon Apr 27 22:09:15 2015 +0200

    gnu: Add ixion.
    
    * gnu/packages/libreoffice.scm: New file.
    * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
    
    Co-authored-by: John Darrington <address@hidden>
---
 gnu-system.am                |    1 +
 gnu/packages/libreoffice.scm |   52 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+), 0 deletions(-)

diff --git a/gnu-system.am b/gnu-system.am
index ae6b4e2..617e8bb 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -175,6 +175,7 @@ GNU_SYSTEM_MODULES =                                \
   gnu/packages/libftdi.scm                     \
   gnu/packages/libidn.scm                      \
   gnu/packages/libphidget.scm                  \
+  gnu/packages/libreoffice.scm                 \
   gnu/packages/libsigsegv.scm                  \
   gnu/packages/libunistring.scm                        \
   gnu/packages/libusb.scm                      \
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm
new file mode 100644
index 0000000..97b464d
--- /dev/null
+++ b/gnu/packages/libreoffice.scm
@@ -0,0 +1,52 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 Andreas Enge <address@hidden>
+;;; Copyright © 2014 John Darrington <address@hidden>
+;;;
+;;; 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 <http://www.gnu.org/licenses/>.
+
+(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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]