gnu: celestia: Use G-expressions.

* gnu/packages/astronomy.scm (celestia)[arguments]: Rewrite as G-expressions.

Co-authored-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
Sharlatan Hellseher 2023-06-25 22:28:20 +01:00 committed by Tobias Geerinckx-Rice
parent 60b5da172b
commit 26b43211b2
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1189,6 +1189,12 @@ (define-public celestia
(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 @@ (define-public celestia
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