various: mark broken on darwin (#420458)

This commit is contained in:
Philip Taron 2025-06-30 16:51:44 -07:00 committed by GitHub
commit e1db604e23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 12 additions and 0 deletions

View File

@ -35,6 +35,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/fedeinthemix/chez-mit/";
maintainers = [ maintainers.jitwit ];
license = licenses.gpl3Plus;
broken = stdenv.hostPlatform.isDarwin;
};
}

View File

@ -105,5 +105,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
maintainers = with maintainers; [ veprbl ];
platforms = platforms.unix;
broken = stdenv.hostPlatform.isDarwin;
};
}

View File

@ -53,5 +53,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/PerryWerneck/lib3270";
license = licenses.lgpl3Plus;
maintainers = [ maintainers.vifino ];
broken = stdenv.hostPlatform.isDarwin;
};
}

View File

@ -45,5 +45,6 @@ stdenv.mkDerivation {
license = licenses.gpl2Plus;
maintainers = with maintainers; [ pSub ];
platforms = lib.platforms.unix;
broken = stdenv.hostPlatform.isDarwin;
};
}

View File

@ -41,5 +41,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl3;
platforms = platforms.unix;
mainProgram = "xlog";
broken = stdenv.hostPlatform.isDarwin;
};
}

View File

@ -1,5 +1,6 @@
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
}:
@ -23,5 +24,6 @@ buildGoModule rec {
license = licenses.mit;
maintainers = with maintainers; [ nrhelmi ];
mainProgram = "xteve";
broken = stdenv.hostPlatform.isDarwin;
};
}

View File

@ -1,5 +1,6 @@
{
lib,
stdenv,
buildNpmPackage,
electron,
fetchFromGitHub,
@ -87,5 +88,6 @@ buildNpmPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ symphorien ];
mainProgram = "zap" + lib.optionalString (!withGui) "-cli";
broken = stdenv.hostPlatform.isDarwin;
};
}

View File

@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
setuptools,
@ -38,5 +39,6 @@ buildPythonPackage rec {
license = lib.licenses.bsd3;
description = "Cross-Platform toolkit to get info on and control monitors connected";
maintainers = with lib.maintainers; [ sigmanificient ];
broken = stdenv.hostPlatform.isDarwin;
};
}

View File

@ -58,5 +58,6 @@ stdenv.mkDerivation (finalAttrs: {
mainProgram = "mod_python";
platforms = lib.platforms.unix;
maintainers = [ ];
broken = stdenv.hostPlatform.isDarwin;
};
})