gnu: gfortran-toolchain, gdc-toolchain: Make visible again.

These two packages were made accidentally "hidden" in commit
2576e2019d.

* gnu/packages/commencement.scm (make-gcc-toolchain): Remove the
'hidden?' property.
This commit is contained in:
Ludovic Courtès 2022-01-06 16:18:06 +01:00 committed by Ludovic Courtès
parent 93e6a11994
commit af1b5de6d8
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2012-2022 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2014 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright © 2014, 2015, 2017 Mark H Weaver <mhw@netris.org>
@ -3768,7 +3768,10 @@ COREUTILS-FINAL vs. COREUTILS, etc."
(append (package-search-paths gcc)
(package-search-paths libc)))
(properties (package-properties gcc)) ;for 'compiler-cpu-architectures'
;; Copy the 'compiler-cpu-architectures' property and other things that
;; may be useful, but not the 'hidden?' property.
(properties (alist-delete 'hidden? (package-properties gcc)))
(license (package-license gcc))
(synopsis "Complete GCC tool chain for C/C++ development")
(description