mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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:
parent
93e6a11994
commit
af1b5de6d8
1 changed files with 5 additions and 2 deletions
|
@ -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 @@ (define* (make-gcc-toolchain gcc
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue