clojure: use jdk11

Clojure officially only supports Java LTS releases. Related to #89731.
As discussed in
https://discourse.nixos.org/t/package-version-arguments-vs-generic-package-arguments/9071
seems that the preferred way to set the jdk version is on
`all-packages.nix`
This commit is contained in:
José Luis Lafuente 2020-12-08 22:49:05 +01:00
parent 296793637b
commit eaa116a8db
No known key found for this signature in database
GPG Key ID: 8A3455EBE455489A
1 changed files with 4 additions and 1 deletions

View File

@ -10322,7 +10322,10 @@ in
clisp = callPackage ../development/interpreters/clisp { };
clisp-tip = callPackage ../development/interpreters/clisp/hg.nix { };
clojure = callPackage ../development/interpreters/clojure { };
clojure = callPackage ../development/interpreters/clojure {
# set this to an LTS version of java
jdk = jdk11;
};
clojure-lsp = callPackage ../development/tools/misc/clojure-lsp { };