mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
hydra: Fix typo in core package list.
* build-aux/hydra/gnu-system.scm: Use (gnu packages gcc). (%core-packages): Remove nonexistent 'gcc'; add GCC-4.8 and GCC-4.7.
This commit is contained in:
parent
e795890212
commit
d452b595f9
1 changed files with 2 additions and 1 deletions
|
@ -41,6 +41,7 @@
|
||||||
(guix derivations)
|
(guix derivations)
|
||||||
((guix utils) #:select (%current-system))
|
((guix utils) #:select (%current-system))
|
||||||
(gnu packages)
|
(gnu packages)
|
||||||
|
(gnu packages gcc)
|
||||||
(gnu packages base)
|
(gnu packages base)
|
||||||
(gnu packages gawk)
|
(gnu packages gawk)
|
||||||
(gnu packages guile)
|
(gnu packages guile)
|
||||||
|
@ -90,7 +91,7 @@ (define %core-packages
|
||||||
;; Note: Don't put the '-final' package variants because (1) that's
|
;; Note: Don't put the '-final' package variants because (1) that's
|
||||||
;; implicit, and (2) they cannot be cross-built (due to the explicit input
|
;; implicit, and (2) they cannot be cross-built (due to the explicit input
|
||||||
;; chain.)
|
;; chain.)
|
||||||
(list gcc glibc binutils
|
(list gcc-4.8 gcc-4.7 glibc binutils
|
||||||
gmp mpfr mpc coreutils findutils diffutils patch sed grep
|
gmp mpfr mpc coreutils findutils diffutils patch sed grep
|
||||||
gawk gnu-gettext hello guile-2.0 zlib gzip xz
|
gawk gnu-gettext hello guile-2.0 zlib gzip xz
|
||||||
%bootstrap-binaries-tarball
|
%bootstrap-binaries-tarball
|
||||||
|
|
Loading…
Reference in a new issue