clojure: restore jdk with override in all-packages (#447873)

This commit is contained in:
Tomodachi94
2025-10-02 17:10:12 +00:00
committed by GitHub
2 changed files with 7 additions and 6 deletions
@@ -4,15 +4,11 @@
bashNonInteractive,
fetchurl,
installShellFiles,
jdk21,
jdk,
rlwrap,
makeWrapper,
writeScript,
}:
let
# set this to an LTS version of java
jdk = jdk21;
in
stdenv.mkDerivation (finalAttrs: {
pname = "clojure";
version = "1.12.2.1565";
+6 -1
View File
@@ -5812,7 +5812,12 @@ with pkgs;
xeus-cling
;
clojure = callPackage ../development/interpreters/clojure { };
clojure = callPackage ../development/interpreters/clojure {
# set this to an LTS version of java
# Be careful if you remove this, out-of-tree consumers expect to
# be able to override `jdk`.
jdk = jdk21;
};
clooj = callPackage ../development/interpreters/clojure/clooj.nix { };