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
52
enableParallelBuilding = true;
53
54
-
meta = with lib; {
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;
0
0
0
0
60
};
61
}
···
51
52
enableParallelBuilding = true;
53
54
+
meta = {
55
description = "Toolkit for High Energy Physics Event Generation";
56
homepage = "https://herwig.hepforge.org/";
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
+
];
64
};
65
}