me
/
guix
Archived
1
0
Fork 0

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
master
Vinicius Monego 2024-04-06 07:55:04 -03:00
parent 86c896c12e
commit 4a49457995
No known key found for this signature in database
GPG Key ID: 637B0B138065B68A
1 changed files with 18 additions and 18 deletions

View File

@ -1669,7 +1669,7 @@ fully-vectorial and three-dimensional methods.")
(define-public meep
(package
(name "meep")
(version "1.8.0")
(version "1.28.0")
(source (origin
(method url-fetch)
(uri
@ -1678,27 +1678,27 @@ fully-vectorial and three-dimensional methods.")
version "/meep-" version ".tar.gz"))
(sha256
(base32
"14zyxmm3p80j5fz5b89sl7hgkgcisqjny5hjh4pi274ziqjqz8bm"))))
"199a29mb64cfv89azzdh8arpy9ib6050cqh86yw5ypm5jhy6178v"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags
(list (string-append "--with-libctl="
(assoc-ref %build-inputs "libctl")
(list #:configure-flags
#~(list (string-append "--with-libctl="
#$(this-package-input "guile-libctl")
"/share/libctl"))))
(native-inputs
`(("fortran" ,gfortran)
("pkg-config" ,pkg-config)
("swig" ,swig)))
(list gfortran
pkg-config
swig))
(inputs
`(("fftw" ,fftw)
("gsl" ,gsl)
("guile" ,guile-2.2)
("harminv" ,harminv)
("hdf5" ,hdf5)
("openblas" ,openblas)
("libctl" ,guile-libctl)
("mpb" ,mpb)
("zlib" ,zlib)))
(list fftw
gsl
guile-2.2
guile-libctl
harminv
hdf5
mpb
openblas
zlib))
(home-page "http://ab-initio.mit.edu/wiki/index.php/Meep")
(synopsis "Finite-difference time-domain (FDTD) simulation software")
(description