clojure: correct license (three-clause BSD -> EPLv1.0)

This is retroactive. See: https://clojure.org/community/license
This commit is contained in:
Yegor Timoshenko 2017-09-26 12:38:26 +00:00
parent cee657f9a3
commit 2f3af251be

View File

@ -20,10 +20,10 @@ stdenv.mkDerivation {
makeWrapper ${jdk.jre}/bin/java $out/bin/clojure --add-flags "-cp $out/share/java/clojure.jar clojure.main" makeWrapper ${jdk.jre}/bin/java $out/bin/clojure --add-flags "-cp $out/share/java/clojure.jar clojure.main"
''; '';
meta = { meta = with stdenv.lib; {
description = "A Lisp dialect for the JVM"; description = "A Lisp dialect for the JVM";
homepage = https://clojure.org/; homepage = https://clojure.org/;
license = stdenv.lib.licenses.bsd3; license = licenses.epl10;
longDescription = '' longDescription = ''
Clojure is a dynamic programming language that targets the Java Clojure is a dynamic programming language that targets the Java
Virtual Machine. It is designed to be a general-purpose language, Virtual Machine. It is designed to be a general-purpose language,
@ -43,7 +43,7 @@ stdenv.mkDerivation {
offers a software transactional memory system and reactive Agent offers a software transactional memory system and reactive Agent
system that ensure clean, correct, multithreaded designs. system that ensure clean, correct, multithreaded designs.
''; '';
maintainers = with stdenv.lib.maintainers; [ the-kenny ]; maintainers = with maintainers; [ the-kenny ];
platforms = with stdenv.lib.platforms; unix; platforms = platforms.unix;
}; };
} }