mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: ixion: Update to 0.19.0.
* gnu/packages/libreoffice.scm (ixion): Update to 0.19.0. [source]: Use git. [native-inputs]: Add autoconf, automake and libtool. Change-Id: I245457d7c99b6adfb895dc46276f8008ff13d0cd
This commit is contained in:
parent
e18af936ff
commit
370468c547
1 changed files with 13 additions and 13 deletions
|
@ -14,6 +14,7 @@
|
||||||
;;; Copyright © 2019 Chris Marusich <cmmarusich@gmail.com>
|
;;; Copyright © 2019 Chris Marusich <cmmarusich@gmail.com>
|
||||||
;;; Copyright © 2020 Marcin Karpezo <sirmacik@wioo.waw.pl>
|
;;; Copyright © 2020 Marcin Karpezo <sirmacik@wioo.waw.pl>
|
||||||
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
|
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
|
||||||
|
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -92,20 +93,19 @@ (define-module (gnu packages libreoffice)
|
||||||
(define-public ixion
|
(define-public ixion
|
||||||
(package
|
(package
|
||||||
(name "ixion")
|
(name "ixion")
|
||||||
(version "0.17.0")
|
(version "0.19.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method git-fetch)
|
||||||
(method url-fetch)
|
(uri (git-reference
|
||||||
(uri (string-append "http://kohei.us/files/ixion/src/libixion-"
|
(url "https://gitlab.com/ixion/ixion")
|
||||||
version ".tar.xz"))
|
(commit version)))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"07hhqkvns4da8xv990gr1smqz1zf40m531lg95nphfrz48wp3jak"))))
|
(base32
|
||||||
|
"0nycbs3765wkaw9ff7aflm56ayxkn15dlfl5pbbb9b5i2rcv3dq6"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs (list autoconf automake libtool pkg-config))
|
||||||
(list pkg-config))
|
(inputs (list mdds python spdlog))
|
||||||
(inputs
|
|
||||||
(list mdds python spdlog))
|
|
||||||
(home-page "https://gitlab.com/ixion/ixion")
|
(home-page "https://gitlab.com/ixion/ixion")
|
||||||
(synopsis "General purpose formula parser and interpreter")
|
(synopsis "General purpose formula parser and interpreter")
|
||||||
(description "Ixion is a library for calculating the results of formula
|
(description "Ixion is a library for calculating the results of formula
|
||||||
|
|
Loading…
Reference in a new issue