mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: cmh: Fix build.
This follows up on commit 1de48e8f8a
.
* gnu/packages/algebra.scm (fplll-4-cmh): New variable.
(cmh)[inputs]: Use it.
This commit is contained in:
parent
69e3512b7c
commit
ddfb62807d
1 changed files with 15 additions and 1 deletions
|
@ -298,6 +298,20 @@ (define-public gp2c
|
||||||
(license license:gpl2)
|
(license license:gpl2)
|
||||||
(home-page "https://pari.math.u-bordeaux.fr/")))
|
(home-page "https://pari.math.u-bordeaux.fr/")))
|
||||||
|
|
||||||
|
(define fplll-4-cmh
|
||||||
|
(package
|
||||||
|
(inherit fplll)
|
||||||
|
(name "fplll")
|
||||||
|
(version "4.0.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://perso.ens-lyon.fr/damien.stehle/fplll/libfplll-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1cbiby7ykis4z84swclpysrljmqhfcllpkcbll1m08rzskgb1a6b"))))))
|
||||||
|
|
||||||
(define-public cmh
|
(define-public cmh
|
||||||
(package
|
(package
|
||||||
(name "cmh")
|
(name "cmh")
|
||||||
|
@ -316,7 +330,7 @@ (define-public cmh
|
||||||
("mpfr" ,mpfr)
|
("mpfr" ,mpfr)
|
||||||
("mpc" ,mpc)
|
("mpc" ,mpc)
|
||||||
("mpfrcx" ,mpfrcx)
|
("mpfrcx" ,mpfrcx)
|
||||||
("fplll" ,fplll)
|
("fplll" ,fplll-4-cmh)
|
||||||
("pari-gp" ,pari-gp)))
|
("pari-gp" ,pari-gp)))
|
||||||
(synopsis "Igusa class polynomial computations")
|
(synopsis "Igusa class polynomial computations")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue