diff options
-rw-r--r-- | gnu/packages/chemistry.scm | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/gnu/packages/chemistry.scm b/gnu/packages/chemistry.scm index eb37a493a9..afa21d0b02 100644 --- a/gnu/packages/chemistry.scm +++ b/gnu/packages/chemistry.scm @@ -812,9 +812,16 @@ your colleagues, or to generate pre-rendered animations.") "-DBUILD_XCFUN=OFF" "-DBUILD_LIBCINT=OFF")))))))) (native-inputs - (list cmake-minimal - python-setuptools - python-wheel)) + (list + cmake-minimal + ;; HACK: Add gcc, make tune work. + ;; build-system-with-tuning-compiler on guix/transformations.scm + ;; want to find compiler on the build-inputs, but gcc is on the + ;; python-build-system's host-inputs, so when tune it , will report: + ;; "failed to determine which compiler is used" + (canonical-package gcc) + python-setuptools + python-wheel)) (inputs (list ;; Use qcint when tuning for x86_64. |