Unverified Commit cdc8050f authored by Rafael Ieda's avatar Rafael Ieda
Browse files

treewide: mark as broken on darwin (last successful Hydra build in 2024)

parent ec693e65
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -77,5 +77,7 @@ stdenv.mkDerivation rec {

    maintainers = [ ];
    platforms = lib.platforms.all;
    # The last successful Darwin Hydra build was in 2024
    broken = stdenv.hostPlatform.isDarwin;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -32,5 +32,7 @@ stdenv.mkDerivation rec {
    description = "Virtual filesystem that allows browsing of compressed files";
    platforms = lib.platforms.unix;
    license = lib.licenses.gpl2Only;
    # The last successful Darwin Hydra build was in 2024
    broken = stdenv.hostPlatform.isDarwin;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -46,5 +46,7 @@ stdenv.mkDerivation rec {
    homepage = "https://coan2.sourceforge.net/";
    license = licenses.bsd3;
    platforms = platforms.all;
    # The last successful Darwin Hydra build was in 2024
    broken = stdenv.hostPlatform.isDarwin;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -50,5 +50,7 @@ stdenv.mkDerivation rec {
    '';
    license = lib.licenses.gpl2;
    homepage = "https://emboss.sourceforge.net/";
    # The last successful Darwin Hydra build was in 2024
    broken = stdenv.hostPlatform.isDarwin;
  };
}
+3 −0
Original line number Diff line number Diff line
{
  stdenv,
  lib,
  rustPlatform,
  fetchFromGitHub,
@@ -36,5 +37,7 @@ rustPlatform.buildRustPackage rec {
    license = lib.licenses.mit;
    maintainers = [ ];
    mainProgram = "eureka";
    # The last successful Darwin Hydra build was in 2024
    broken = stdenv.hostPlatform.isDarwin;
  };
}
Loading