diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-10-10 18:28:12 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-05-15 22:33:17 +0200 |
commit | 095494ed6c9ba6924c938038dc0fb3ce86f6a1ad (patch) | |
tree | 7e46a5c0ad8a3d577b4e1ba2fd6f772761eb9497 | |
parent | 0e660c4de95817cd0578ae3882fad31f60bf596b (diff) | |
download | guix-095494ed6c9ba6924c938038dc0fb3ce86f6a1ad.tar guix-095494ed6c9ba6924c938038dc0fb3ce86f6a1ad.tar.gz |
licenses: Add EDL 1.0.
* guix/licenses.scm (edl1.0): New variable.
-rw-r--r-- | guix/licenses.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/guix/licenses.scm b/guix/licenses.scm index a95f89a7bf..8396b1a3c6 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -43,6 +43,7 @@ artistic2.0 clarified-artistic copyleft-next cpl1.0 + edl1.0 epl1.0 expat freetype @@ -231,6 +232,11 @@ at URI, which may be a file:// URI pointing the package's tree." "http://directory.fsf.org/wiki/License:CPLv1.0" "https://www.gnu.org/licenses/license-list#CommonPublicLicense10")) +(define edl1.0 + (license "EDL 1.0" + "http://directory.fsf.org/wiki/License:EDLv1.0" + "https://eclipse.org/org/documents/edl-v10.php")) + (define epl1.0 (license "EPL 1.0" "http://directory.fsf.org/wiki/License:EPLv1.0" |