diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-12-10 13:56:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-12-10 13:56:26 +0100 |
commit | dfb74e50b790c9d31a1ff1f71f93d5230cc03924 (patch) | |
tree | 97daf74831bb01ff8ec452c60428932088962f22 /build-aux/hydra | |
parent | e67253dbe2cad74b58360ea61a770b149bd0f6ca (diff) | |
download | guix-dfb74e50b790c9d31a1ff1f71f93d5230cc03924.tar guix-dfb74e50b790c9d31a1ff1f71f93d5230cc03924.tar.gz |
hydra: Add zlib, gzip, and xz to the core package set.
* build-aux/hydra/gnu-system.scm (%core-packages): Add zlib, gzip, and xz.
Diffstat (limited to 'build-aux/hydra')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index 3a17b6ec94..73031bf62c 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -45,6 +45,7 @@ (gnu packages gawk) (gnu packages guile) (gnu packages gettext) + (gnu packages compression) (gnu packages multiprecision) (gnu packages make-bootstrap) (srfi srfi-1) @@ -83,7 +84,7 @@ SYSTEM." (define %core-packages (list gmp mpfr mpc coreutils findutils diffutils patch sed grep - gawk gnu-gettext hello guile-2.0 + gawk gnu-gettext hello guile-2.0 zlib gzip xz %bootstrap-binaries-tarball %binutils-bootstrap-tarball %glibc-bootstrap-tarball |