diff options
author | Jonathan Brielmaier <jonathan.brielmaier@web.de> | 2019-02-27 18:01:51 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2019-03-14 20:49:02 -0400 |
commit | 138950a88b96a42d09e4d4a490444a0918a2842b (patch) | |
tree | 4befe1e95004bcf918a4fadec0565fe6c092790a /gnu/packages | |
parent | e719562d590eb525b02d00b4e15064d0667f692c (diff) | |
download | patches-138950a88b96a42d09e4d4a490444a0918a2842b.tar patches-138950a88b96a42d09e4d4a490444a0918a2842b.tar.gz |
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>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/engineering.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 8d58e459b2..4ac76e35b0 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -1097,16 +1097,16 @@ fully-vectorial and three-dimensional methods.") (define-public meep (package (name "meep") - (version "1.3") + (version "1.8.0") (source (origin (method url-fetch) (uri (string-append - "http://ab-initio.mit.edu/meep/meep-" - version ".tar.gz")) + "https://github.com/NanoComp/meep/releases/download/v" + version "/meep-" version ".tar.gz")) (sha256 (base32 - "0f6lbw2hrksg7xscwdqs78jc9nmzx9fs8j0hz1y4i8qknkqiyk2n")))) + "14zyxmm3p80j5fz5b89sl7hgkgcisqjny5hjh4pi274ziqjqz8bm")))) (build-system gnu-build-system) (arguments `(#:configure-flags @@ -1120,7 +1120,7 @@ fully-vectorial and three-dimensional methods.") (inputs `(("fftw" ,fftw) ("gsl" ,gsl) - ("guile" ,guile-2.0) ; doesn't build with guile-2.2 + ("guile" ,guile-2.2) ("harminv" ,harminv) ("hdf5" ,hdf5) ("lapack" ,lapack) |