Commit d5aa65e8 authored by Jörg Thalheim's avatar Jörg Thalheim
Browse files

deno: prefer badPlatforms over broken for macos

This works better with `availableOn`
parent 04efabb0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,6 +113,6 @@ rustPlatform.buildRustPackage rec {
    ];
    # NOTE: `aligned_alloc` error on darwin SDK < 10.15. Can't do usual overrideSDK with rust toolchain in current implementation.
    # Should be fixed with darwin SDK refactor and can be revisited.
    broken = stdenv.isDarwin && stdenv.isx86_64;
    badPlatforms = [ "x86_64-darwin" ];
  };
}