diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-03-11 13:01:19 -0500 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2021-09-05 10:26:19 -0400 |
commit | 25ea0a2c7c609f1c6b8f33a32eca69ccd446bb7d (patch) | |
tree | 9ee7c73fdf62ec58f5fe2d991a251b694ae0a8bf | |
parent | ece6fb85761eb504ee122c61c9c2bb27d1cc95ca (diff) | |
download | guix-25ea0a2c7c609f1c6b8f33a32eca69ccd446bb7d.tar.gz |
gnu: atkmm: Update synopsis, description, home-page and license.
* gnu/packages/gtk.scm (atkmm) [synopsis]: Modify. [description]: Modify. [home-page]: Modify. [license]: Add gpl2+. Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
-rw-r--r-- | gnu/packages/gtk.scm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 8b96bff404..d73adbd50d 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1470,12 +1470,15 @@ library.") ("xsltproc" ,libxslt))) (propagated-inputs `(("glibmm" ,glibmm) ("atk" ,atk))) - (home-page "https://www.gtkmm.org") - (synopsis "C++ interface to the ATK accessibility library") - (description - "ATKmm provides a C++ programming interface to the ATK accessibility -toolkit.") - (license license:lgpl2.1+))) + (synopsis "C++ bindings for ATK") + (description "ATKmm is the C++ binding for the ATK library.") + (home-page "https://wiki.gnome.org/Accessibility") + (license + (list + ;; Library + license:lgpl2.1+ + ;; Tools + license:gpl2+)))) (define-public gtkmm (package |