mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: meep: Update to 1.28.0.
* gnu/packages/engineering.scm (meep): Update to 1.28.0. [arguments]: Use G-Expressions. [native-inputs, inputs]: Use package labels. Change-Id: I98c867645bb7e052a4b909753bc150c4c25d1638
This commit is contained in:
parent
86c896c12e
commit
4a49457995
1 changed files with 18 additions and 18 deletions
|
@ -1669,7 +1669,7 @@ (define-public mpb
|
||||||
(define-public meep
|
(define-public meep
|
||||||
(package
|
(package
|
||||||
(name "meep")
|
(name "meep")
|
||||||
(version "1.8.0")
|
(version "1.28.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
|
@ -1678,27 +1678,27 @@ (define-public meep
|
||||||
version "/meep-" version ".tar.gz"))
|
version "/meep-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"14zyxmm3p80j5fz5b89sl7hgkgcisqjny5hjh4pi274ziqjqz8bm"))))
|
"199a29mb64cfv89azzdh8arpy9ib6050cqh86yw5ypm5jhy6178v"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
(list #:configure-flags
|
||||||
(list (string-append "--with-libctl="
|
#~(list (string-append "--with-libctl="
|
||||||
(assoc-ref %build-inputs "libctl")
|
#$(this-package-input "guile-libctl")
|
||||||
"/share/libctl"))))
|
"/share/libctl"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("fortran" ,gfortran)
|
(list gfortran
|
||||||
("pkg-config" ,pkg-config)
|
pkg-config
|
||||||
("swig" ,swig)))
|
swig))
|
||||||
(inputs
|
(inputs
|
||||||
`(("fftw" ,fftw)
|
(list fftw
|
||||||
("gsl" ,gsl)
|
gsl
|
||||||
("guile" ,guile-2.2)
|
guile-2.2
|
||||||
("harminv" ,harminv)
|
guile-libctl
|
||||||
("hdf5" ,hdf5)
|
harminv
|
||||||
("openblas" ,openblas)
|
hdf5
|
||||||
("libctl" ,guile-libctl)
|
mpb
|
||||||
("mpb" ,mpb)
|
openblas
|
||||||
("zlib" ,zlib)))
|
zlib))
|
||||||
(home-page "http://ab-initio.mit.edu/wiki/index.php/Meep")
|
(home-page "http://ab-initio.mit.edu/wiki/index.php/Meep")
|
||||||
(synopsis "Finite-difference time-domain (FDTD) simulation software")
|
(synopsis "Finite-difference time-domain (FDTD) simulation software")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue