tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
thepeg: mark as broken on darwin
Gaetan Lepage
9 months ago
1a976d64
c76d239f
+8
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
th
thepeg
package.nix
+8
-4
pkgs/by-name/th/thepeg/package.nix
···
51
51
52
52
enableParallelBuilding = true;
53
53
54
54
-
meta = with lib; {
54
54
+
meta = {
55
55
description = "Toolkit for High Energy Physics Event Generation";
56
56
homepage = "https://herwig.hepforge.org/";
57
57
-
license = licenses.gpl3Only;
58
58
-
maintainers = with maintainers; [ veprbl ];
59
59
-
platforms = platforms.unix;
57
57
+
license = lib.licenses.gpl3Only;
58
58
+
maintainers = with lib.maintainers; [ veprbl ];
59
59
+
platforms = lib.platforms.unix;
60
60
+
badPlatforms = [
61
61
+
# ../include/ThePEG/Config/std.h:101:12: error: no member named 'mem_fun' in namespace 'std'; did you mean 'mem_fn'?
62
62
+
lib.systems.inspect.patterns.isDarwin
63
63
+
];
60
64
};
61
65
}