diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2023-06-25 22:28:20 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-02 02:00:41 +0200 |
commit | 26b43211b28a0f7c64e9d0a8c58e4dbbbd171150 (patch) | |
tree | ee25da8cd6ff4f722e8cbeb5b4545b294cec85dc /gnu/packages/astronomy.scm | |
parent | 60b5da172b45cb6f5a09c46da0fa78cc587af516 (diff) | |
download | guix-26b43211b28a0f7c64e9d0a8c58e4dbbbd171150.tar.gz |
gnu: celestia: Use G-expressions.
* gnu/packages/astronomy.scm (celestia)[arguments]: Rewrite as G-expressions. Co-authored-by: Tobias Geerinckx-Rice <me@tobias.gr>
Diffstat (limited to 'gnu/packages/astronomy.scm')
-rw-r--r-- | gnu/packages/astronomy.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 0068c9a018..bd47775459 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -1189,6 +1189,12 @@ any arbitrary astrometric projection defined in the WCS standard.") (base32 "00xibg87l1arzifakgj7s828x9pszcgx7x7ij88a561ig49ryh78")))) (build-system cmake-build-system) + (arguments + (list + #:configure-flags + #~(list "-DENABLE_GLUT=ON" + "-DENABLE_QT=OFF") + #:tests? #f)) ; no tests (native-inputs (list gettext-minimal libgit2 @@ -1207,9 +1213,6 @@ any arbitrary astrometric projection defined in the WCS standard.") mesa)) (propagated-inputs (list lua)) - (arguments - `(#:configure-flags '("-DENABLE_GLUT=ON" "-DENABLE_QT=OFF") - #:tests? #f)) ;no tests (home-page "https://celestia.space/") (synopsis "Real-time 3D visualization of space") (description |