mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: qcint: Fix build.
* gnu/packages/chemistry.scm (qcint)[arguments]: Use G-expression. Change-Id: I4e26a872b6e78a6ea96d16c661353063b8d3fcd6
This commit is contained in:
parent
278a80f399
commit
464c3b6340
1 changed files with 6 additions and 6 deletions
|
@ -937,8 +937,8 @@ electromagnetic properties for molecules and crystals.")
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/sunqm/qcint")
|
(url "https://github.com/sunqm/qcint")
|
||||||
(commit (string-append "v" (package-version base)))))
|
(commit (string-append "v" (package-version base)))))
|
||||||
(file-name (git-file-name name (package-version base)))
|
(file-name (git-file-name name (package-version base)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
|
@ -951,11 +951,11 @@ electromagnetic properties for molecules and crystals.")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments base)
|
(substitute-keyword-arguments (package-arguments base)
|
||||||
((#:configure-flags flags '())
|
((#:configure-flags flags '())
|
||||||
`(cons "-DBUILD_MARCH_NATIVE=OFF"
|
#~(cons "-DBUILD_MARCH_NATIVE=OFF"
|
||||||
,flags))
|
#$flags))
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
`(modify-phases ,phases
|
#~(modify-phases #$phases
|
||||||
(delete 'adjust-build-path)))
|
(delete 'adjust-build-path)))
|
||||||
;; Tests require python-pyscf.
|
;; Tests require python-pyscf.
|
||||||
((#:tests? _ #f) #f)))
|
((#:tests? _ #f) #f)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue