Skip to content

Commit 1a976d6

Browse files
committed
thepeg: mark as broken on darwin
1 parent c76d239 commit 1a976d6

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

pkgs/by-name/th/thepeg/package.nix

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,15 @@ stdenv.mkDerivation rec {
5151

5252
enableParallelBuilding = true;
5353

54-
meta = with lib; {
54+
meta = {
5555
description = "Toolkit for High Energy Physics Event Generation";
5656
homepage = "https://herwig.hepforge.org/";
57-
license = licenses.gpl3Only;
58-
maintainers = with maintainers; [ veprbl ];
59-
platforms = platforms.unix;
57+
license = lib.licenses.gpl3Only;
58+
maintainers = with lib.maintainers; [ veprbl ];
59+
platforms = lib.platforms.unix;
60+
badPlatforms = [
61+
# ../include/ThePEG/Config/std.h:101:12: error: no member named 'mem_fun' in namespace 'std'; did you mean 'mem_fn'?
62+
lib.systems.inspect.patterns.isDarwin
63+
];
6064
};
6165
}

0 commit comments

Comments
 (0)