diff options
author | Paul A. Patience <paul@apatience.com> | 2023-06-20 02:10:23 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-06-25 23:46:03 +0200 |
commit | d08cb9bf44d93bad6135dfd5047cfd3a38ffbf22 (patch) | |
tree | 18ba3557078490e8550a73c8e660b978087ab4c5 | |
parent | bdf3d621bfb3f49d1ef799713bc8dcb7336d7802 (diff) |
gnu: nomad-optimizer: Fix build.
* gnu/packages/maths.scm (nomad-optimizer)
[arguments]<#:phases>: Remove 'delete-superfluous-egg-info' phase.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/maths.scm | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index f5a2181905..653e76027a 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2388,16 +2388,7 @@ interfaces.") (string-append builddir "/src/nomad "))) (for-each (lambda (f) (fix-exe-path dir f)) - '("param1.txt" "param2.txt" "param3.txt" "param10.txt"))))))) - - ;; The information in the .egg-info file is not kept up to date. - (add-after 'install 'delete-superfluous-egg-info - (lambda* (#:key inputs outputs #:allow-other-keys) - (delete-file (string-append - (site-packages inputs outputs) - "/PyNomad-0.0.0-py" - (python-version (assoc-ref inputs "python")) - ".egg-info"))))))) + '("param1.txt" "param2.txt" "param3.txt" "param10.txt")))))))))) (home-page "https://www.gerad.ca/nomad/") (synopsis "Nonlinear optimization by mesh-adaptive direct search") (description |