Commit 477c3cec authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

glslls: fix cmake 4 compatibility

parent 151ad222
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -25,6 +25,12 @@ stdenv.mkDerivation (finalAttrs: {
    ninja
  ];

  cmakeFlags = [
    # CMake 4 dropped support of versions lower than 3.5,
    # versions lower than 3.10 are deprecated.
    (lib.cmakeFeature "CMAKE_POLICY_VERSION_MINIMUM" "3.10")
  ];

  meta = {
    description = "Language server implementation for GLSL";
    mainProgram = "glslls";