Merge pull request #154988 from veprbl/pr/broken_gplates

gplates: mark as broken on darwin

authored by Bobby Rong and committed by GitHub cb3da55e a6ed2455

+2
+2
pkgs/applications/science/misc/gplates/default.nix
··· 1 { lib 2 , mkDerivation 3 , fetchurl 4 , cmake ··· 65 homepage = "https://www.gplates.org"; 66 license = licenses.gpl2Only; 67 platforms = platforms.all; 68 }; 69 }
··· 1 { lib 2 + , stdenv 3 , mkDerivation 4 , fetchurl 5 , cmake ··· 66 homepage = "https://www.gplates.org"; 67 license = licenses.gpl2Only; 68 platforms = platforms.all; 69 + broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/gplates.x86_64-darwin 70 }; 71 }