We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd43ee9 commit c90a2a7Copy full SHA for c90a2a7
default.nix
@@ -49,9 +49,6 @@ in with pkgs; {
49
# C#, F#, Visual Basic
50
inherit mono;
51
52
- # Java 8
53
- jdk8 = jdk8_headless;
54
-
55
# OCaml
56
inherit ocaml;
57
@@ -61,17 +58,20 @@ in with pkgs; {
61
58
# Lua
62
59
inherit lua;
63
60
64
- # Scala
65
- inherit scala;
66
67
# Golang
68
inherit go;
69
70
# Node.js
71
inherit nodejs;
72
+ # Java 8
+ jdk8 = jdk8_headless;
+
+ # Scala
+ scala = scala.override { jre = jre8_headless; };
73
# Kotlin/JVM
74
- inherit kotlin;
+ kotlin = kotlin.override { jre = jre8_headless; };
75
76
# Why? check ./kotlin-native/default.nix
77
# # Kotlin/Native
0 commit comments