various: mark broken on darwin (#420458)

authored by philiptaron.tngl.sh and committed by GitHub e1db604e 0b69fad4

+12
+1
pkgs/by-name/ch/chez-mit/package.nix
··· 35 35 homepage = "https://github.com/fedeinthemix/chez-mit/"; 36 36 maintainers = [ maintainers.jitwit ]; 37 37 license = licenses.gpl3Plus; 38 + broken = stdenv.hostPlatform.isDarwin; 38 39 }; 39 40 40 41 }
+1
pkgs/by-name/fa/fastnlo-toolkit/package.nix
··· 105 105 license = licenses.gpl3Plus; 106 106 maintainers = with maintainers; [ veprbl ]; 107 107 platforms = platforms.unix; 108 + broken = stdenv.hostPlatform.isDarwin; 108 109 }; 109 110 }
+1
pkgs/by-name/li/lib3270/package.nix
··· 53 53 homepage = "https://github.com/PerryWerneck/lib3270"; 54 54 license = licenses.lgpl3Plus; 55 55 maintainers = [ maintainers.vifino ]; 56 + broken = stdenv.hostPlatform.isDarwin; 56 57 }; 57 58 }
+1
pkgs/by-name/li/libfilezilla/package.nix
··· 45 45 license = licenses.gpl2Plus; 46 46 maintainers = with maintainers; [ pSub ]; 47 47 platforms = lib.platforms.unix; 48 + broken = stdenv.hostPlatform.isDarwin; 48 49 }; 49 50 }
+1
pkgs/by-name/xl/xlog/package.nix
··· 41 41 license = licenses.gpl3; 42 42 platforms = platforms.unix; 43 43 mainProgram = "xlog"; 44 + broken = stdenv.hostPlatform.isDarwin; 44 45 }; 45 46 }
+2
pkgs/by-name/xt/xteve/package.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildGoModule, 4 5 fetchFromGitHub, 5 6 }: ··· 23 24 license = licenses.mit; 24 25 maintainers = with maintainers; [ nrhelmi ]; 25 26 mainProgram = "xteve"; 27 + broken = stdenv.hostPlatform.isDarwin; 26 28 }; 27 29 }
+2
pkgs/by-name/za/zap-chip/package.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildNpmPackage, 4 5 electron, 5 6 fetchFromGitHub, ··· 87 88 license = lib.licenses.asl20; 88 89 maintainers = with lib.maintainers; [ symphorien ]; 89 90 mainProgram = "zap" + lib.optionalString (!withGui) "-cli"; 91 + broken = stdenv.hostPlatform.isDarwin; 90 92 }; 91 93 }
+2
pkgs/development/python-modules/pymonctl/default.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildPythonPackage, 4 5 fetchFromGitHub, 5 6 setuptools, ··· 38 39 license = lib.licenses.bsd3; 39 40 description = "Cross-Platform toolkit to get info on and control monitors connected"; 40 41 maintainers = with lib.maintainers; [ sigmanificient ]; 42 + broken = stdenv.hostPlatform.isDarwin; 41 43 }; 42 44 }
+1
pkgs/servers/http/apache-modules/mod_python/default.nix
··· 58 58 mainProgram = "mod_python"; 59 59 platforms = lib.platforms.unix; 60 60 maintainers = [ ]; 61 + broken = stdenv.hostPlatform.isDarwin; 61 62 }; 62 63 })