diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-08 23:18:01 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-08 23:18:01 +0100 |
commit | 8057c9e906fefb8df9ef94a83a644c9d7b1b0cd0 (patch) | |
tree | 5396af11efd97daf33a15e26d75ddf6938db768c | |
parent | 8b6acb1f20638de5b90c284baacc6058f7ffaa62 (diff) | |
download | guix-8057c9e906fefb8df9ef94a83a644c9d7b1b0cd0.tar.gz |
gnu: Add epl2.0.
* guix/licenses.scm (epl2.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 4ef3ed188c..d22c3fa36e 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -50,6 +50,7 @@ cpl1.0 edl1.0 epl1.0 + epl2.0 expat freetype freebsd-doc @@ -274,6 +275,11 @@ at URI, which may be a file:// URI pointing the package's tree." "http://directory.fsf.org/wiki/License:EPLv1.0" "https://www.gnu.org/licenses/license-list#EPL")) +(define epl2.0 + (license "EPL 2.0" + "https://www.eclipse.org/legal/epl-2.0/" + "https://www.gnu.org/licenses/license-list#EPL2")) + (define expat (license "Expat" "http://directory.fsf.org/wiki/License:Expat" |