mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-21 08:01:31 +00:00
various: drop obsolete broken (#541220)
This commit is contained in:
@@ -36,7 +36,6 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ stteague ];
|
||||
platforms = lib.platforms.unix;
|
||||
broken = stdenv.system == "x86_64-darwin";
|
||||
mainProgram = "flamp";
|
||||
};
|
||||
})
|
||||
|
||||
@@ -51,7 +51,5 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
];
|
||||
maintainers = [ lib.maintainers.progrm_jarvis ];
|
||||
mainProgram = "ig";
|
||||
# The last successful Darwin Hydra build was in 2024
|
||||
broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64;
|
||||
};
|
||||
})
|
||||
|
||||
@@ -57,7 +57,6 @@ stdenv.mkDerivation {
|
||||
license = lib.licenses.gpl2;
|
||||
maintainers = [ lib.maintainers.azahi ];
|
||||
platforms = lib.platforms.unix;
|
||||
broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64; # Looks like a libcxx version mismatch problem.
|
||||
mainProgram = "qolibri";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -61,9 +61,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
mpi
|
||||
];
|
||||
|
||||
# xslu and xsllt tests seem to time out on x86_64-darwin.
|
||||
# this line is left so those who force installation on x86_64-darwin can still build
|
||||
doCheck = !(stdenv.hostPlatform.isx86_64 && stdenv.hostPlatform.isDarwin);
|
||||
doCheck = true;
|
||||
|
||||
cmakeFlags = [
|
||||
(lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic))
|
||||
@@ -93,7 +91,5 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
markuskowa
|
||||
gdinh
|
||||
];
|
||||
# xslu and xsllt tests fail on x86 darwin
|
||||
broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64;
|
||||
};
|
||||
})
|
||||
|
||||
@@ -99,8 +99,6 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
|
||||
meta = {
|
||||
description = "Open Source Visual Servoing Platform";
|
||||
# ref. https://github.com/lagadic/visp/pull/1658
|
||||
broken = stdenv.hostPlatform.system == "x86_64-darwin";
|
||||
homepage = "https://visp.inria.fr";
|
||||
changelog = "https://github.com/lagadic/visp/blob/v${finalAttrs.version}/ChangeLog.txt";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
|
||||
@@ -105,8 +105,6 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
meta = {
|
||||
# assembler failures during build, x86_64-darwin broken since 2020-10-14
|
||||
broken = (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64);
|
||||
description = "Clozure Common Lisp";
|
||||
homepage = "https://ccl.clozure.com/";
|
||||
license = lib.licenses.asl20;
|
||||
|
||||
@@ -551,8 +551,5 @@ stdenv.mkDerivation {
|
||||
"aarch64-linux"
|
||||
"aarch64-darwin"
|
||||
];
|
||||
# build deadlocks intermittently on rosetta
|
||||
# https://github.com/dotnet/runtime/issues/111628
|
||||
broken = stdenv.hostPlatform.system == "x86_64-darwin";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user