diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-01-22 00:20:40 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-01-22 00:20:40 +0100 |
commit | 66ea671393c76db3e97aacde40273f11fcf8c337 (patch) | |
tree | 23a1bc46fccbbcf35d743886997baf88ce75c82c | |
parent | 00585a55822be497acde19c4d0bfd3857e52cc4f (diff) | |
download | patches-66ea671393c76db3e97aacde40273f11fcf8c337.tar patches-66ea671393c76db3e97aacde40273f11fcf8c337.tar.gz |
licenses: Add GNU FDL 1.3+.
* guix/licenses.scm (fdl1.3+): New variable.
-rw-r--r-- | guix/licenses.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/guix/licenses.scm b/guix/licenses.scm index c0a0e60b36..5f1b3c16cf 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012, 2014 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2012, 2013 Nikita Karetnikov <nikita@karetnikov.org> ;;; @@ -31,6 +31,7 @@ expat freetype gpl1 gpl1+ gpl2 gpl2+ gpl3 gpl3+ + fdl1.3+ isc ijg ibmpl1.0 @@ -161,6 +162,11 @@ which may be a file:// URI pointing the package's tree." "https://www.gnu.org/licenses/gpl.html" "https://www.gnu.org/licenses/license-list#GNUGPLv3")) +(define fdl1.3+ + (license "FDL 1.3+" + "https://www.gnu.org/licenses/fdl.html" + "https://www.gnu.org/licenses/license-list#FDL")) + (define isc (license "ISC" "http://directory.fsf.org/wiki/License:ISC" |