Unverified Commit aa61fd00 authored by Fernando Rodrigues's avatar Fernando Rodrigues Committed by GitHub
Browse files

collada-dom: fix build against CMake >= 3.10 (#449740)

parents 10536fb7 e14188e1
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -36,6 +36,11 @@ stdenv.mkDerivation (finalAttrs: {
    readline
  ];

  cmakeFlags = [
    # See https://github.com/NixOS/nixpkgs/issues/445447
    "-DCMAKE_POLICY_VERSION_MINIMUM=3.10"
  ];

  meta = {
    description = "API that provides a C++ object representation of a COLLADA XML instance document";
    longDescription = "This is a fork of [rdiankov/collada-dom](https://github.com/rdiankov/collada-dom) which has been unmaintained for six years.";