vscode-extensions.redhat.java: fix versionAtLeast invocation
lib.versionAtLeast a b ~=~ a >= b, not the other way round. https://github.com/NixOS/nixpkgs/pull/116941#discussion_r599107310
This commit is contained in:
parent
f4430c23a4
commit
0435d26450
@ -604,7 +604,7 @@ let
|
||||
buildInputs = [ jdk ];
|
||||
meta = {
|
||||
license = lib.licenses.epl20;
|
||||
broken = lib.versionAtLeast "11" jdk.version;
|
||||
broken = lib.versionAtLeast jdk.version "11";
|
||||
};
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user