summaryrefslogtreecommitdiff
path: root/gnu/packages/libidn.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2016-05-14 22:03:14 +0300
committerEfraim Flashner <efraim@flashner.co.il>2016-05-16 06:10:06 +0300
commit74dd0e483137ccdd3ed19e094811719ec69cf838 (patch)
tree4718dd85bd4f9a1e2bd1e3760a44570e3641ee38 /gnu/packages/libidn.scm
parentb7ab191ddd73f1e74294c98bb2f6a9697ea8a556 (diff)
downloadguix-patches-74dd0e483137ccdd3ed19e094811719ec69cf838.tar
guix-patches-74dd0e483137ccdd3ed19e094811719ec69cf838.tar.gz
gnu: libidn: Update license.
* gnu/packages/libidn.scm (libidn)[license]: Change the license to gpl2+ gpl3+ lgpl3+ fdl1.3+.
Diffstat (limited to 'gnu/packages/libidn.scm')
-rw-r--r--gnu/packages/libidn.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/libidn.scm b/gnu/packages/libidn.scm
index 382e14f0cc..053565c909 100644
--- a/gnu/packages/libidn.scm
+++ b/gnu/packages/libidn.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Andreas Enge <andreas@enge.fr>
+;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -40,5 +41,7 @@
"libidn is a library implementing of the Stringprep, Punycode and IDNA
specifications. These are used to encode and decode internationalized domain
names. It includes native C, C# and Java libraries.")
- (license lgpl2.1+)
+ ;; The C code is dual-licensed gpl2+ lgpl3+, the manual is fdl1.3+,
+ ;; the command line tool is gpl3+.
+ (license (list gpl2+ gpl3+ lgpl3+ fdl1.3+))
(home-page "http://www.gnu.org/software/libidn/")))