mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: skymaker: Use G-expressions.
* gnu/packages/astronomy.scm (skymaker)[arguments]: Rewrite as G-expressions. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
7ec0b32d21
commit
c0831eadef
1 changed files with 5 additions and 4 deletions
|
@ -967,13 +967,14 @@ (define-public skymaker
|
|||
(base32 "03zvx7c89plp9559niqv5532r233kza3ir992rg3nxjksqmrqvx1"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list
|
||||
"CPPFLAGS=-fcommon" ; fix build with GCC 10
|
||||
(string-append
|
||||
"--with-fftw-libdir=" (assoc-ref %build-inputs "fftw") "/lib")
|
||||
"--with-fftw-libdir=" #$(this-package-input "fftw") "/lib")
|
||||
(string-append
|
||||
"--with-fftw-incdir=" (assoc-ref %build-inputs "fftw") "/include"))))
|
||||
"--with-fftw-incdir=" #$(this-package-input "fftw") "/include"))))
|
||||
(inputs
|
||||
`(("fftw" ,fftwf)))
|
||||
(home-page "https://www.astromatic.net/software/skymaker")
|
||||
|
|
Loading…
Reference in a new issue