treewide: mark broken for darwin

main
Rick van Schijndel 2 years ago committed by Janne Heß
parent 82ccbc08de
commit 010f6ee30d
No known key found for this signature in database
GPG Key ID: 69165158F05265DF
  1. 2
      pkgs/development/compilers/crystal/default.nix
  2. 1
      pkgs/development/libraries/SDL_compat/default.nix
  3. 3
      pkgs/development/libraries/vtk/generic.nix
  4. 1
      pkgs/development/tools/build-managers/cmake/default.nix
  5. 1
      pkgs/development/tools/rust/cbindgen/default.nix
  6. 1
      pkgs/misc/jackaudio/jack1.nix
  7. 3
      pkgs/os-specific/linux/sdnotify-wrapper/default.nix
  8. 1
      pkgs/shells/rush/default.nix

@ -214,13 +214,13 @@ let
};
meta = with lib; {
broken = stdenv.isDarwin;
description = "A compiled language with Ruby like syntax and type inference";
homepage = "https://crystal-lang.org/";
license = licenses.asl20;
maintainers = with maintainers; [ david50407 manveru peterhoeg ];
platforms = let archNames = builtins.attrNames archs; in
if (lib.versionOlder version "1.2.0") then remove "aarch64-darwin" archNames else archNames;
broken = lib.versionOlder version "0.36.1" && stdenv.isDarwin;
};
})
);

@ -43,6 +43,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "A cross-platform multimedia library - build SDL 1.2 applications against 2.0";
homepage = "https://www.libsdl.org/";
license = licenses.zlib;

@ -101,12 +101,11 @@ in stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Open source libraries for 3D computer graphics, image processing and visualization";
homepage = "https://www.vtk.org/";
license = licenses.bsd3;
maintainers = with maintainers; [ knedlsepp tfmoraes lheckemann ];
platforms = with platforms; unix;
# /nix/store/xxxxxxx-apple-framework-Security/Library/Frameworks/Security.framework/Headers/Authorization.h:192:7: error: variably modified 'bytes' at file scope
broken = stdenv.isDarwin && (lib.versions.major majorVersion == "7" || lib.versions.major majorVersion == "8");
};
}

@ -118,6 +118,7 @@ stdenv.mkDerivation rec {
doCheck = false; # fails
meta = with lib; {
broken = (withQt5 && stdenv.isDarwin);
homepage = "https://cmake.org/";
changelog = "https://cmake.org/cmake/help/v${lib.versions.majorMinor version}/release/${lib.versions.majorMinor version}.html";
description = "Cross-Platform Makefile Generator";

@ -30,6 +30,7 @@ rustPlatform.buildRustPackage rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "A project for generating C bindings from Rust code";
homepage = "https://github.com/eqrion/cbindgen";
license = licenses.mpl20;

@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ optLibuuid ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "JACK audio connection kit";
homepage = "https://jackaudio.org";
license = with licenses; [ gpl2 lgpl21 ];

@ -1,4 +1,4 @@
{ lib, runCommandCC, skawarePackages }:
{ stdenv, lib, runCommandCC, skawarePackages }:
with skawarePackages;
@ -12,6 +12,7 @@ in runCommandCC "sdnotify-wrapper" {
outputs = [ "bin" "doc" "out" ];
meta = {
broken = stdenv.isDarwin;
homepage = "https://skarnet.org/software/misc/sdnotify-wrapper.c";
description = "Use systemd sd_notify without having to link against libsystemd";
platforms = lib.platforms.all;

@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
doCheck = true;
meta = {
broken = stdenv.isDarwin;
description = "Restricted User Shell";
longDescription =

Loading…
Cancel
Save