luaformatter: fix darwin build

This commit is contained in:
figsoda 2021-09-04 11:06:18 -04:00 committed by Raphael Megzari
parent 5881fc5a6e
commit 7caefdd073
2 changed files with 2 additions and 1 deletions

View file

@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
description = "Code formatter for Lua";
homepage = "https://github.com/Koihik/LuaFormatter";
license = licenses.asl20;
platforms = platforms.all;
maintainers = with maintainers; [ figsoda SuperSandro2000 ];
mainProgram = "lua-format";
};

View file

@ -14178,7 +14178,7 @@ with pkgs;
luaformatter = callPackage ../development/tools/luaformatter
(lib.optionalAttrs stdenv.isDarwin {
stdenv = overrideCC stdenv llvmPackages_latest.clang;
stdenv = overrideCC stdenv llvmPackages_9.clang;
});
malt = callPackage ../development/tools/profiling/malt {};