gnu: xyce-serial: Update to 6.8.
* gnu/packages/engineering.scm (xyce-serial): Update to 6.8. [inputs]: Replace lapack-3.5 with lapack. * gnu/packages/engineering.scm (xyce-prallel): [arguments]: Update configure flags to work with 6.8 version. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
d73482b408
commit
ac04601a82
|
@ -1347,14 +1347,14 @@ unique design feature of Trilinos is its focus on packages.")
|
||||||
(define-public xyce-serial
|
(define-public xyce-serial
|
||||||
(package
|
(package
|
||||||
(name "xyce-serial")
|
(name "xyce-serial")
|
||||||
(version "6.7")
|
(version "6.8")
|
||||||
(source
|
(source
|
||||||
(origin (method url-fetch)
|
(origin (method url-fetch)
|
||||||
(uri (string-append "https://archive.org/download/Xyce-"
|
(uri (string-append "https://archive.org/download/Xyce-"
|
||||||
version "/Xyce-" version ".tar.gz"))
|
version "/Xyce-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"02k952mnvrnc5kv7r65fdrn7khwq1lbyhwyvd7jznafzdpsvgm4x"))))
|
"09flp1xywbb2laayd9rg8vd0fjsh115y6k1p71jacy0nrbdvvlcg"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
`(#:tests? #f
|
||||||
|
@ -1370,7 +1370,7 @@ unique design feature of Trilinos is its focus on packages.")
|
||||||
(inputs
|
(inputs
|
||||||
`(("fftw" ,fftw)
|
`(("fftw" ,fftw)
|
||||||
("suitesparse" ,suitesparse)
|
("suitesparse" ,suitesparse)
|
||||||
("lapack" ,lapack-3.5)
|
("lapack" ,lapack)
|
||||||
("trilinos" ,trilinos-serial-xyce)))
|
("trilinos" ,trilinos-serial-xyce)))
|
||||||
(home-page "https://xyce.sandia.gov/")
|
(home-page "https://xyce.sandia.gov/")
|
||||||
(synopsis "High-performance analog circuit simulator")
|
(synopsis "High-performance analog circuit simulator")
|
||||||
|
@ -1405,8 +1405,6 @@ parallel computing platforms. It also supports serial execution.")
|
||||||
"CC=mpicc"
|
"CC=mpicc"
|
||||||
"F77=mpif77"
|
"F77=mpif77"
|
||||||
"--enable-mpi"
|
"--enable-mpi"
|
||||||
"--enable-isorropia=no"
|
|
||||||
"--enable-zoltan=no"
|
|
||||||
(string-append
|
(string-append
|
||||||
"ARCHDIR="
|
"ARCHDIR="
|
||||||
(assoc-ref %build-inputs "trilinos")))))))
|
(assoc-ref %build-inputs "trilinos")))))))
|
||||||
|
|
Loading…
Reference in New Issue