diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-05-20 23:20:51 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-05-20 23:23:01 +0200 |
commit | 0dc8c9088f86d127d55cb99182853c48a4af0e99 (patch) | |
tree | bc29a736cdc1ff45771e9305e6b72749230536ce /gnu/packages | |
parent | a32ecb5089c32a2080b315a5200078d1a303c656 (diff) | |
download | patches-0dc8c9088f86d127d55cb99182853c48a4af0e99.tar patches-0dc8c9088f86d127d55cb99182853c48a4af0e99.tar.gz |
gnu: libdbusmenu: Clarify licensing.
* gnu/packages/gtk.scm (libdbusmenu)[license]: Remove GPL3. Add comment
about dual-licensing.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gtk.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index a885d35080..62b33a45ba 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr> -;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014, 2015, 2017, 2018, 2019 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch> @@ -1804,4 +1804,6 @@ shell scripts. Example of how to use @code{yad} can be consulted at (description "@code{libdbusmenu} passes a menu structure across DBus so that a program can create a menu simply without worrying about how it is displayed on the other side of the bus.") - (license (list license:gpl3 license:lgpl2.1 license:lgpl3)))) + + ;; Dual-licensed under either LGPLv2.1 or LGPLv3. + (license (list license:lgpl2.1 license:lgpl3)))) |