We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c76d239 commit 1a976d6Copy full SHA for 1a976d6
pkgs/by-name/th/thepeg/package.nix
@@ -51,11 +51,15 @@ stdenv.mkDerivation rec {
51
52
enableParallelBuilding = true;
53
54
- meta = with lib; {
+ meta = {
55
description = "Toolkit for High Energy Physics Event Generation";
56
homepage = "https://herwig.hepforge.org/";
57
- license = licenses.gpl3Only;
58
- maintainers = with maintainers; [ veprbl ];
59
- platforms = platforms.unix;
+ license = lib.licenses.gpl3Only;
+ maintainers = with lib.maintainers; [ veprbl ];
+ 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
+ ];
64
};
65
}
0 commit comments