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-20 14:39:49 +0200 |
commit | 429046e9dd38a8cd9e569172f2f23dce3d61cbf3 (patch) | |
tree | 7c609ef7da16f4791d67d420c156f346298c2589 | |
parent | 6520904b3e79a5f59bd681931d0ae72783e43eee (diff) | |
download | patches-429046e9dd38a8cd9e569172f2f23dce3d61cbf3.tar patches-429046e9dd38a8cd9e569172f2f23dce3d61cbf3.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.
-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 f9a0da9a75..2fab394d23 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -494,7 +494,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 |