Unverified Commit 05262d2a authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

glslls: fix cmake 4 compatibility (#450784)

parents d31a8e7f 477c3cec
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";