treewide: mark broken for darwin

authored by Rick van Schijndel and committed by Janne Heß 010f6ee3 82ccbc08

+9 -4
+1 -1
pkgs/development/compilers/crystal/default.nix
··· 214 214 }; 215 215 216 216 meta = with lib; { 217 + broken = stdenv.isDarwin; 217 218 description = "A compiled language with Ruby like syntax and type inference"; 218 219 homepage = "https://crystal-lang.org/"; 219 220 license = licenses.asl20; 220 221 maintainers = with maintainers; [ david50407 manveru peterhoeg ]; 221 222 platforms = let archNames = builtins.attrNames archs; in 222 223 if (lib.versionOlder version "1.2.0") then remove "aarch64-darwin" archNames else archNames; 223 - broken = lib.versionOlder version "0.36.1" && stdenv.isDarwin; 224 224 }; 225 225 }) 226 226 );
+1
pkgs/development/libraries/SDL_compat/default.nix
··· 43 43 ''; 44 44 45 45 meta = with lib; { 46 + broken = stdenv.isDarwin; 46 47 description = "A cross-platform multimedia library - build SDL 1.2 applications against 2.0"; 47 48 homepage = "https://www.libsdl.org/"; 48 49 license = licenses.zlib;
+1 -2
pkgs/development/libraries/vtk/generic.nix
··· 101 101 ''; 102 102 103 103 meta = with lib; { 104 + broken = stdenv.isDarwin; 104 105 description = "Open source libraries for 3D computer graphics, image processing and visualization"; 105 106 homepage = "https://www.vtk.org/"; 106 107 license = licenses.bsd3; 107 108 maintainers = with maintainers; [ knedlsepp tfmoraes lheckemann ]; 108 109 platforms = with platforms; unix; 109 - # /nix/store/xxxxxxx-apple-framework-Security/Library/Frameworks/Security.framework/Headers/Authorization.h:192:7: error: variably modified 'bytes' at file scope 110 - broken = stdenv.isDarwin && (lib.versions.major majorVersion == "7" || lib.versions.major majorVersion == "8"); 111 110 }; 112 111 }
+1
pkgs/development/tools/build-managers/cmake/default.nix
··· 118 118 doCheck = false; # fails 119 119 120 120 meta = with lib; { 121 + broken = (withQt5 && stdenv.isDarwin); 121 122 homepage = "https://cmake.org/"; 122 123 changelog = "https://cmake.org/cmake/help/v${lib.versions.majorMinor version}/release/${lib.versions.majorMinor version}.html"; 123 124 description = "Cross-Platform Makefile Generator";
+1
pkgs/development/tools/rust/cbindgen/default.nix
··· 30 30 ]; 31 31 32 32 meta = with lib; { 33 + broken = stdenv.isDarwin; 33 34 description = "A project for generating C bindings from Rust code"; 34 35 homepage = "https://github.com/eqrion/cbindgen"; 35 36 license = licenses.mpl20;
+1
pkgs/misc/jackaudio/jack1.nix
··· 31 31 propagatedBuildInputs = [ optLibuuid ]; 32 32 33 33 meta = with lib; { 34 + broken = stdenv.isDarwin; 34 35 description = "JACK audio connection kit"; 35 36 homepage = "https://jackaudio.org"; 36 37 license = with licenses; [ gpl2 lgpl21 ];
+2 -1
pkgs/os-specific/linux/sdnotify-wrapper/default.nix
··· 1 - { lib, runCommandCC, skawarePackages }: 1 + { stdenv, lib, runCommandCC, skawarePackages }: 2 2 3 3 with skawarePackages; 4 4 ··· 12 12 outputs = [ "bin" "doc" "out" ]; 13 13 14 14 meta = { 15 + broken = stdenv.isDarwin; 15 16 homepage = "https://skarnet.org/software/misc/sdnotify-wrapper.c"; 16 17 description = "Use systemd sd_notify without having to link against libsystemd"; 17 18 platforms = lib.platforms.all;
+1
pkgs/shells/rush/default.nix
··· 20 20 doCheck = true; 21 21 22 22 meta = { 23 + broken = stdenv.isDarwin; 23 24 description = "Restricted User Shell"; 24 25 25 26 longDescription =