mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: meep: Update to 1.8.0.
* gnu/packages/engineering.scm (meep): Update to 1.8.0. [source]: Fetch source from GitHub, as it's only there. [inputs]: Use Guile 2.2, as meep supports it. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
e719562d59
commit
138950a88b
1 changed files with 5 additions and 5 deletions
|
@ -1097,16 +1097,16 @@ (define-public mpb
|
||||||
(define-public meep
|
(define-public meep
|
||||||
(package
|
(package
|
||||||
(name "meep")
|
(name "meep")
|
||||||
(version "1.3")
|
(version "1.8.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
(string-append
|
(string-append
|
||||||
"http://ab-initio.mit.edu/meep/meep-"
|
"https://github.com/NanoComp/meep/releases/download/v"
|
||||||
version ".tar.gz"))
|
version "/meep-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0f6lbw2hrksg7xscwdqs78jc9nmzx9fs8j0hz1y4i8qknkqiyk2n"))))
|
"14zyxmm3p80j5fz5b89sl7hgkgcisqjny5hjh4pi274ziqjqz8bm"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
|
@ -1120,7 +1120,7 @@ (define-public meep
|
||||||
(inputs
|
(inputs
|
||||||
`(("fftw" ,fftw)
|
`(("fftw" ,fftw)
|
||||||
("gsl" ,gsl)
|
("gsl" ,gsl)
|
||||||
("guile" ,guile-2.0) ; doesn't build with guile-2.2
|
("guile" ,guile-2.2)
|
||||||
("harminv" ,harminv)
|
("harminv" ,harminv)
|
||||||
("hdf5" ,hdf5)
|
("hdf5" ,hdf5)
|
||||||
("lapack" ,lapack)
|
("lapack" ,lapack)
|
||||||
|
|
Loading…
Reference in a new issue