diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-05-19 23:36:56 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-05-19 23:38:52 +0200 |
commit | b55dd31660934b9eca1862e4015e72ab8360aeb1 (patch) | |
tree | e02ff8b753b8fe39bd279739bf1387890a68f09f /gnu/system.scm | |
parent | 41fa164aa0a2b1c490065df639f38aa62ffa58e8 (diff) | |
download | patches-b55dd31660934b9eca1862e4015e72ab8360aeb1.tar patches-b55dd31660934b9eca1862e4015e72ab8360aeb1.tar.gz |
system: Use Guile 2.2 rather than 2.0 in %BASE-PACKAGES.
* gnu/system.scm (%base-packages): Change GUILE-2.0 to GUILE-2.2.
Diffstat (limited to 'gnu/system.scm')
-rw-r--r-- | gnu/system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index 5bd60176fe..0076f2fcb1 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -502,7 +502,7 @@ explicitly appear in OS." ;; The packages below are also in %FINAL-INPUTS, so take them from ;; there to avoid duplication. (map canonical-package - (list guile-2.0 bash coreutils-8.27 findutils grep sed + (list guile-2.2 bash coreutils-8.27 findutils grep sed diffutils patch gawk tar gzip bzip2 xz lzip)))) (define %default-issue |