thepeg: mark as broken on darwin

+8 -4
+8 -4
pkgs/by-name/th/thepeg/package.nix
··· 51 52 enableParallelBuilding = true; 53 54 - meta = with lib; { 55 description = "Toolkit for High Energy Physics Event Generation"; 56 homepage = "https://herwig.hepforge.org/"; 57 - license = licenses.gpl3Only; 58 - maintainers = with maintainers; [ veprbl ]; 59 - platforms = platforms.unix; 60 }; 61 }
··· 51 52 enableParallelBuilding = true; 53 54 + meta = { 55 description = "Toolkit for High Energy Physics Event Generation"; 56 homepage = "https://herwig.hepforge.org/"; 57 + license = lib.licenses.gpl3Only; 58 + maintainers = with lib.maintainers; [ veprbl ]; 59 + platforms = lib.platforms.unix; 60 + badPlatforms = [ 61 + # ../include/ThePEG/Config/std.h:101:12: error: no member named 'mem_fun' in namespace 'std'; did you mean 'mem_fn'? 62 + lib.systems.inspect.patterns.isDarwin 63 + ]; 64 }; 65 }