gnu: libidn: Update license.

* gnu/packages/libidn.scm (libidn)[license]: Change the license to
gpl2+ gpl3+ lgpl3+ fdl1.3+.
This commit is contained in:
Efraim Flashner 2016-05-14 22:03:14 +03:00
parent b7ab191ddd
commit 74dd0e4831
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2012 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -40,5 +41,7 @@
"libidn is a library implementing of the Stringprep, Punycode and IDNA "libidn is a library implementing of the Stringprep, Punycode and IDNA
specifications. These are used to encode and decode internationalized domain specifications. These are used to encode and decode internationalized domain
names. It includes native C, C# and Java libraries.") 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/"))) (home-page "http://www.gnu.org/software/libidn/")))