diff options
author | Eric Bavier <bavier@member.fsf.org> | 2016-01-17 01:55:11 -0600 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2016-01-20 22:06:27 -0600 |
commit | ea4a0e81cbab5f4d15f3957a2675a437690aef81 (patch) | |
tree | 3668ccf705aac7aa4af67eef6c66b7fa74db13cc | |
parent | feb767b23c7c7d59fcba1831016d44ca7fff77c7 (diff) | |
download | patches-ea4a0e81cbab5f4d15f3957a2675a437690aef81.tar patches-ea4a0e81cbab5f4d15f3957a2675a437690aef81.tar.gz |
gnu: licenses: Add Mozilla Public License 1.0.
* guix/licenses.scm (mpl1.0): 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 9ace7f543b..1def1acb3e 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2012, 2013 Nikita Karetnikov <nikita@karetnikov.org> ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -49,7 +50,7 @@ imlib2 ipa lgpl2.0 lgpl2.0+ lgpl2.1 lgpl2.1+ lgpl3 lgpl3+ - mpl1.1 mpl2.0 + mpl1.0 mpl1.1 mpl2.0 ms-pl ncsa openldap2.8 openssl @@ -302,6 +303,11 @@ at URI, which may be a file:// URI pointing the package's tree." "https://www.gnu.org/licenses/lgpl.html" "https://www.gnu.org/licenses/license-list#LGPLv3")) +(define mpl1.0 + (license "MPL 1.0" + "http://www.mozilla.org/MPL/1.0/" + "https://www.gnu.org/licenses/license-list.html#MPL")) + (define mpl1.1 (license "MPL 1.1" "http://directory.fsf.org/wiki/License:MPLv1.1" |