diff options
author | Zheng Junjie <z572@z572.online> | 2025-07-12 17:13:59 +0800 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-07-13 18:37:56 +0800 |
commit | 464c3b63401f213a13870146f4e592734972b54b (patch) | |
tree | 3bae02b6e14659e90443eddccec7c7340c023e63 | |
parent | 278a80f399e06df516e408f57871ae2bead9b19b (diff) |
gnu: qcint: Fix build.
* gnu/packages/chemistry.scm (qcint)[arguments]: Use G-expression.
Change-Id: I4e26a872b6e78a6ea96d16c661353063b8d3fcd6
-rw-r--r-- | gnu/packages/chemistry.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/chemistry.scm b/gnu/packages/chemistry.scm index afa21d0b02..9e9f3bf660 100644 --- a/gnu/packages/chemistry.scm +++ b/gnu/packages/chemistry.scm @@ -937,8 +937,8 @@ electromagnetic properties for molecules and crystals.") (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sunqm/qcint") - (commit (string-append "v" (package-version base))))) + (url "https://github.com/sunqm/qcint") + (commit (string-append "v" (package-version base))))) (file-name (git-file-name name (package-version base))) (sha256 (base32 @@ -951,11 +951,11 @@ electromagnetic properties for molecules and crystals.") (arguments (substitute-keyword-arguments (package-arguments base) ((#:configure-flags flags '()) - `(cons "-DBUILD_MARCH_NATIVE=OFF" - ,flags)) + #~(cons "-DBUILD_MARCH_NATIVE=OFF" + #$flags)) ((#:phases phases) - `(modify-phases ,phases - (delete 'adjust-build-path))) + #~(modify-phases #$phases + (delete 'adjust-build-path))) ;; Tests require python-pyscf. ((#:tests? _ #f) #f))) (native-inputs |