diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-03-11 13:01:19 -0500 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2021-03-26 15:43:40 -0400 |
commit | 5756f4dfbb3780edbf8621666285eeb137b2e777 (patch) | |
tree | fa860f037009c49c268fccbd24e6629de48ae3ca /gnu | |
parent | 8b149214f389b9375ae1c1883e3dbec27f1d4361 (diff) | |
download | guix-5756f4dfbb3780edbf8621666285eeb137b2e777.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>
Diffstat (limited to 'gnu')
-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 494c952013..4e69d5d834 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1476,12 +1476,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 |