diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-11-04 13:41:34 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-11-04 13:48:35 +0100 |
commit | d45122f5379cef253ec298bd594395416cd91ea7 (patch) | |
tree | 0f10460497f810206d378778ea380407e7577dff /distro/packages/guile.scm | |
parent | 6709752fe7743109175c8bcd5bd77d80ffbf7d61 (diff) | |
download | patches-d45122f5379cef253ec298bd594395416cd91ea7.tar patches-d45122f5379cef253ec298bd594395416cd91ea7.tar.gz |
packages: `description' → `synopsis', `long-description' → `description'.
* guix/packages.scm (<package>): Rename `description' to `synopsis', and
`long-description' to `description'.
* tests/packages.scm, distro/packages/base.scm,
distro/packages/databases.scm, distro/packages/guile.scm,
distro/packages/typesetting.scm: Update accordingly.
* po/Makevars (XGETTEXT_OPTIONS): Update `--keyword' flags accordingly.
Diffstat (limited to 'distro/packages/guile.scm')
-rw-r--r-- | distro/packages/guile.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distro/packages/guile.scm b/distro/packages/guile.scm index 464379bc47..451328fe6a 100644 --- a/distro/packages/guile.scm +++ b/distro/packages/guile.scm @@ -47,9 +47,9 @@ or 2.0." (native-inputs `(("pkgconfig" ,pkg-config) ("gperf" ,(nixpkgs-derivation "gperf")))) (inputs `(("guile" ,guile))) - (description "Guile-Reader, a simple framework for building readers for + (synopsis "Guile-Reader, a simple framework for building readers for GNU Guile") - (long-description + (description "Guile-Reader is a simple framework for building readers for GNU Guile. The idea is to make it easy to build procedures that extend Guile’s read |