Unverified Commit 36726648 authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

treewide: mark as broken on darwin (last successful Hydra build in 2023) (#458798)

parents 09d3831f 80f024cb
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -38,5 +38,7 @@ stdenv.mkDerivation rec {
    license = lib.licenses.gpl2;
    platforms = lib.platforms.unix;
    maintainers = [ ];
    # The last successful Darwin Hydra build was in 2023
    broken = stdenv.hostPlatform.isDarwin;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -43,5 +43,7 @@ stdenv.mkDerivation {
      "x86_64-linux"
      "x86_64-darwin"
    ];
    # The last successful Darwin Hydra build was in 2023
    broken = stdenv.hostPlatform.isDarwin;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -56,5 +56,7 @@ stdenv.mkDerivation {
    license = lib.licenses.gpl2Plus;
    platforms = lib.platforms.unix;
    maintainers = [ ];
    # The last successful Darwin Hydra build was in 2023
    broken = stdenv.hostPlatform.isDarwin;
  };
}
+3 −1
Original line number Diff line number Diff line
@@ -60,7 +60,9 @@ stdenv.mkDerivation (finalAttrs: {
    homepage = "https://www.gnu.org/software/gforth";
    downloadPage = "https://github.com/forthy42/gforth";
    license = lib.licenses.gpl3Plus;
    broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; # segfault when running ./gforthmi
    # segfault when running ./gforthmi on aarch64 darwin
    # The last successful Darwin Hydra build was in 2023
    broken = stdenv.hostPlatform.isDarwin;
    platforms = lib.platforms.all;
    mainProgram = "gforth";
  };
+2 −0
Original line number Diff line number Diff line
@@ -36,5 +36,7 @@ rustPlatform.buildRustPackage rec {
    license = licenses.mit;
    maintainers = [ ];
    mainProgram = "glicol-cli";
    # The last successful Darwin Hydra build was in 2023
    broken = stdenv.hostPlatform.isDarwin;
  };
}
Loading