diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2023-10-27 23:14:45 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-11-05 18:09:35 +0000 |
commit | e7b315216af2d77b62532d525ae5160cbfd2835c (patch) | |
tree | 4391eabbef12d07e576fb8e9f6e0d93b94ffad04 /gnu/packages/astronomy.scm | |
parent | b4be62000927bc55c2d18945a50a6ca56948ec92 (diff) | |
download | guix-e7b315216af2d77b62532d525ae5160cbfd2835c.tar.gz guix-e7b315216af2d77b62532d525ae5160cbfd2835c.zip |
gnu: imppg: Use standard configure phase.
* gnu/packages/astronomy.scm (imppg): Use G-expressions.
[arguments]{phases}: Use 'configure standard phase instead of
replacement.
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu/packages/astronomy.scm')
-rw-r--r-- | gnu/packages/astronomy.scm | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index b755e94f0f..22d6db984b 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -3231,19 +3231,8 @@ It can be used to calculate the trajectory of satellites.") (base32 "0a6wb1a9adwd01dmy0r03xxp8iz9y7mvh30088ajilhj4lf90vxa")))) (build-system cmake-build-system) (arguments - `(#:tests? #f ;no test provided - #:phases - (modify-phases %standard-phases - (replace 'configure - (lambda* (#:key outputs #:allow-other-keys) - (mkdir-p "build") - (chdir "build") - (invoke - "cmake" - "-G" "Unix Makefiles" - "-DCMAKE_BUILD_TYPE=Release" - (string-append "-DCMAKE_INSTALL_PREFIX=" (assoc-ref outputs "out")) - "..")))))) + (list ;; No test provided + #:tests? #f)) (native-inputs (list boost pkg-config)) (inputs |