From 857d9f8b6f31c0a5fb80f5651a0aef2cf1f06707 Mon Sep 17 00:00:00 2001 From: "dupont-y@univ-nantes.fr" Date: Tue, 27 May 2025 11:30:03 +0200 Subject: [PATCH] add gfortran-toolchain-15 --- glicid/packages/gcc.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/glicid/packages/gcc.scm b/glicid/packages/gcc.scm index d1c615a..5d047ad 100644 --- a/glicid/packages/gcc.scm +++ b/glicid/packages/gcc.scm @@ -50,6 +50,22 @@ fortran, as well as libc (headers and binaries, plus debugging symbols in the @code{debug} output), and binutils."))) +(define-public gfortran-15 + (hidden-package (custom-gcc gcc-15 "gfortran" + '("fortran") %generic-search-paths))) +(define-public gfortran-toolchain-15 + (package + (inherit (make-gcc-toolchain gfortran-15)) + (synopsis "Complete GCC tool chain for fortran lang development") + (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."))) + + + + (define-public gfortran-11 (hidden-package (custom-gcc gcc-11 "gfortran" '("fortran") %generic-search-paths)))