mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-05-03 15:43:06 +02:00
use guix style on *.scm
This commit is contained in:
parent
a85adcc847
commit
09e78ddc85
28 changed files with 1981 additions and 2065 deletions
|
@ -1,32 +1,28 @@
|
|||
(define-module (glicid packages gcc)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (gnu packages commencement) ;; for make-gcc-toolchain
|
||||
#:use-module (gnu packages gcc) ;; for gcc-11
|
||||
)
|
||||
#:use-module (gnu packages commencement) ; for make-gcc-toolchain
|
||||
#:use-module (gnu packages gcc) ; for gcc-11
|
||||
)
|
||||
|
||||
;; beware : access to internal functions… this is probably not the right way to do it …
|
||||
|
||||
(define custom-gcc (@@ (gnu packages gcc) custom-gcc) )
|
||||
(define %generic-search-paths (@@ (gnu packages gcc) %generic-search-paths ))
|
||||
(define custom-gcc
|
||||
(@@ (gnu packages gcc) custom-gcc))
|
||||
(define %generic-search-paths
|
||||
(@@ (gnu packages gcc) %generic-search-paths))
|
||||
|
||||
;;
|
||||
|
||||
(define-public gfortran-11
|
||||
(hidden-package
|
||||
(custom-gcc gcc-11 "gfortran" '("fortran")
|
||||
%generic-search-paths
|
||||
)
|
||||
)
|
||||
)
|
||||
(hidden-package (custom-gcc gcc-11 "gfortran"
|
||||
'("fortran") %generic-search-paths)))
|
||||
|
||||
(define-public gfortran-toolchain-11
|
||||
(package
|
||||
(package
|
||||
(inherit (make-gcc-toolchain gfortran-11))
|
||||
(synopsis "Complete GCC tool chain for fortran lang development")
|
||||
(description "This package provides a complete GCC tool chain for
|
||||
(description
|
||||
"This package provides a complete GCC tool chain for
|
||||
fortran lang development to be installed in user profiles. This includes
|
||||
fortran, as well as libc (headers and binaries, plus debugging symbols
|
||||
in the @code{debug} output), and binutils."
|
||||
)
|
||||
)
|
||||
)
|
||||
in the @code{debug} output), and binutils.")))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue