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:
sternenseemann 2021-03-22 23:12:48 +01:00 committed by sterni
parent f4430c23a4
commit 0435d26450

View file

@ -604,7 +604,7 @@ let
buildInputs = [ jdk ];
meta = {
license = lib.licenses.epl20;
broken = lib.versionAtLeast "11" jdk.version;
broken = lib.versionAtLeast jdk.version "11";
};
};