mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: mpb: Update to 1.8.0.
* gnu/packages/engineering.scm (mpb): Update to 1.8.0. [source]: Fetch source from GitHub, as it's only there. [arguments]: Build shared library, as required by meep. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
a7de5a5006
commit
e719562d59
1 changed files with 6 additions and 5 deletions
|
@ -1055,22 +1055,23 @@ (define-public guile-libctl
|
||||||
(define-public mpb
|
(define-public mpb
|
||||||
(package
|
(package
|
||||||
(name "mpb")
|
(name "mpb")
|
||||||
(version "1.5")
|
(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/mpb/mpb-"
|
"https://github.com/NanoComp/mpb/releases/download/v"
|
||||||
version ".tar.gz"))
|
version "/mpb-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1mqb2d8jq957nksayjygq58iy8i42vjryzg9iy5fpfay31wzxsix"))))
|
"1jgrb7dd6qs6j6y1gnxmdgrh79l2bvqa6nk60a4pw1annsks4brd"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
(list (string-append "--with-libctl="
|
(list (string-append "--with-libctl="
|
||||||
(assoc-ref %build-inputs "libctl")
|
(assoc-ref %build-inputs "libctl")
|
||||||
"/share/libctl"))))
|
"/share/libctl")
|
||||||
|
"--enable-shared")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("fortran" ,gfortran)
|
`(("fortran" ,gfortran)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
|
|
Loading…
Reference in a new issue