diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-01-11 11:47:38 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-01-11 11:47:38 +0100 |
commit | 17315967926581f13e372d2027686d87efc325de (patch) | |
tree | 7323a48530677cfea98a2f9360735cb660f5e57e /build-aux/hydra | |
parent | 8e92b6b5b5f64596dda102380de8730416698615 (diff) | |
download | guix-17315967926581f13e372d2027686d87efc325de.tar guix-17315967926581f13e372d2027686d87efc325de.tar.gz |
hydra: Add GCC, Binutils, and libc to the core package set.
* build-aux/hydra/gnu-system.scm (%core-packages): Add GCC-FINAL,
GLIBC-FINAL, and BINUTILS.
Diffstat (limited to 'build-aux/hydra')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index 73031bf62c..4b0a922bb0 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -83,7 +83,8 @@ SYSTEM." (cut package-cross-derivation <> <> target <>)))) (define %core-packages - (list gmp mpfr mpc coreutils findutils diffutils patch sed grep + (list gcc-final glibc-final binutils + gmp mpfr mpc coreutils findutils diffutils patch sed grep gawk gnu-gettext hello guile-2.0 zlib gzip xz %bootstrap-binaries-tarball %binutils-bootstrap-tarball |