summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorTim Steinbach <NeQuissimus@users.noreply.github.com>2017-09-26 09:10:39 -0400
committerGitHub <noreply@github.com>2017-09-26 09:10:39 -0400
commitda8fb81dfa1e9028f763493cbd9ad09d2856742a (patch)
tree2d6e87586098d686e6799101783248baba2125d0 /pkgs/development/interpreters
parentff5626652d421f595fcb56bf9d3d37bf59105df7 (diff)
parent2f3af251be07f7411b75e324eb025092f0c102df (diff)
downloadnixlib-da8fb81dfa1e9028f763493cbd9ad09d2856742a.tar
nixlib-da8fb81dfa1e9028f763493cbd9ad09d2856742a.tar.gz
nixlib-da8fb81dfa1e9028f763493cbd9ad09d2856742a.tar.bz2
nixlib-da8fb81dfa1e9028f763493cbd9ad09d2856742a.tar.lz
nixlib-da8fb81dfa1e9028f763493cbd9ad09d2856742a.tar.xz
nixlib-da8fb81dfa1e9028f763493cbd9ad09d2856742a.tar.zst
nixlib-da8fb81dfa1e9028f763493cbd9ad09d2856742a.zip
Merge pull request #29805 from yegortimoshenko/clojure/correct-license
clojure: correct license (three-clause BSD -> EPLv1.0)
Diffstat (limited to 'pkgs/development/interpreters')
-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;
   };
 }