3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #151378 from veprbl/pr/broken_contour

contour: mark as broken on darwin
This commit is contained in:
Fabian Affolter 2021-12-20 08:17:34 +01:00 committed by GitHub
commit 68a2b5680e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, mkDerivation, fetchFromGitHub, cmake, pkg-config, freetype, libGL, pcre }:
{ lib, stdenv, mkDerivation, fetchFromGitHub, cmake, pkg-config, freetype, libGL, pcre }:
mkDerivation rec {
pname = "contour";
@ -23,5 +23,6 @@ mkDerivation rec {
license = licenses.asl20;
maintainers = with maintainers; [ fortuneteller2k ];
platforms = platforms.unix;
broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/contour.x86_64-darwin
};
}