gnu: Add paritwine.
* gnu/packages/algebra.scm (paritwine): New variable. Change-Id: If2a55dd4a42d4d27a67249bd11592635ade20351master
parent
baf4cd20d1
commit
8842826609
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2022 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2022, 2023, 2024 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2013, 2015, 2017, 2018, 2021 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2015, 2017, 2018, 2021 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2016-2023 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2016-2023 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2014, 2018 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2018 Mark H Weaver <mhw@netris.org>
|
||||||
|
@ -296,6 +296,34 @@ GP2C, the GP to C compiler, translates GP scripts to PARI programs.")
|
||||||
(license license:gpl2)
|
(license license:gpl2)
|
||||||
(home-page "https://pari.math.u-bordeaux.fr/")))
|
(home-page "https://pari.math.u-bordeaux.fr/")))
|
||||||
|
|
||||||
|
(define-public paritwine
|
||||||
|
(package
|
||||||
|
(name "paritwine")
|
||||||
|
(version "0.2.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://www.multiprecision.org/downloads/" name
|
||||||
|
"-" version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"15m5jxmhx5zivk1k9wxpmzs8kqva3kvgxizdrkrmmp1qycn85n23"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(propagated-inputs (list pari-gp
|
||||||
|
gmp
|
||||||
|
mpfr
|
||||||
|
mpc
|
||||||
|
cmh
|
||||||
|
flint)) ; referenced in src/paritwine.h
|
||||||
|
(synopsis "Glue library between PARI/GP and other mathematics libraries")
|
||||||
|
(description
|
||||||
|
"PariTwine is a glue library between the system for computer algebra
|
||||||
|
and number theory PARI/GP and a number of other mathematics libraries,
|
||||||
|
currently GMP, GNU MPFR, GNU MPC, FLINT and CMH.")
|
||||||
|
(license license:gpl2+)
|
||||||
|
(home-page "https://www.multiprecision.org/paritwine/index.html")))
|
||||||
|
|
||||||
(define-public cmh
|
(define-public cmh
|
||||||
(package
|
(package
|
||||||
(name "cmh")
|
(name "cmh")
|
||||||
|
|
Reference in New Issue