Merge pull request #151378 from veprbl/pr/broken_contour

contour: mark as broken on darwin

authored by Fabian Affolter and committed by GitHub 68a2b568 8b79620a

+2 -1
+2 -1
pkgs/applications/terminal-emulators/contour/default.nix
··· 1 - { lib, mkDerivation, fetchFromGitHub, cmake, pkg-config, freetype, libGL, pcre }: 2 3 mkDerivation rec { 4 pname = "contour"; ··· 23 license = licenses.asl20; 24 maintainers = with maintainers; [ fortuneteller2k ]; 25 platforms = platforms.unix; 26 }; 27 }
··· 1 + { lib, stdenv, mkDerivation, fetchFromGitHub, cmake, pkg-config, freetype, libGL, pcre }: 2 3 mkDerivation rec { 4 pname = "contour"; ··· 23 license = licenses.asl20; 24 maintainers = with maintainers; [ fortuneteller2k ]; 25 platforms = platforms.unix; 26 + broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/contour.x86_64-darwin 27 }; 28 }