about summary refs log tree commit diff
path: root/pkgs/development/interpreters/clojure
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@gmail.com>2017-09-26 12:38:26 +0000
committerYegor Timoshenko <yegortimoshenko@gmail.com>2017-09-26 12:38:26 +0000
commit2f3af251be07f7411b75e324eb025092f0c102df (patch)
treeda0fc61188057909253e6e22b70147a31b495d6d /pkgs/development/interpreters/clojure
parentcee657f9a338cb9fa7505fd02fb69e46449da16d (diff)
downloadnixlib-2f3af251be07f7411b75e324eb025092f0c102df.tar
nixlib-2f3af251be07f7411b75e324eb025092f0c102df.tar.gz
nixlib-2f3af251be07f7411b75e324eb025092f0c102df.tar.bz2
nixlib-2f3af251be07f7411b75e324eb025092f0c102df.tar.lz
nixlib-2f3af251be07f7411b75e324eb025092f0c102df.tar.xz
nixlib-2f3af251be07f7411b75e324eb025092f0c102df.tar.zst
nixlib-2f3af251be07f7411b75e324eb025092f0c102df.zip
clojure: correct license (three-clause BSD -> EPLv1.0)
This is retroactive. See: https://clojure.org/community/license
Diffstat (limited to 'pkgs/development/interpreters/clojure')
-rw-r--r--pkgs/development/interpreters/clojure/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/interpreters/clojure/default.nix b/pkgs/development/interpreters/clojure/default.nix
index 8c724577359b..ed2c4db20f7c 100644
--- a/pkgs/development/interpreters/clojure/default.nix
+++ b/pkgs/development/interpreters/clojure/default.nix
@@ -20,10 +20,10 @@ stdenv.mkDerivation {
     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";
     homepage = https://clojure.org/;
-    license = stdenv.lib.licenses.bsd3;
+    license = licenses.epl10;
     longDescription = ''
       Clojure is a dynamic programming language that targets the Java
       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
       system that ensure clean, correct, multithreaded designs.
     '';
-    maintainers = with stdenv.lib.maintainers; [ the-kenny ];
-    platforms = with stdenv.lib.platforms; unix;
+    maintainers = with maintainers; [ the-kenny ];
+    platforms = platforms.unix;
   };
 }