tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
CoinMP: fix build with clang 16
Weijia Wang
2 years ago
49ee2abd
27e48d2c
+4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
CoinMP
default.nix
+4
pkgs/development/libraries/CoinMP/default.nix
reviewed
···
11
11
12
12
enableParallelBuilding = true;
13
13
14
14
+
env = lib.optionalAttrs stdenv.cc.isClang {
15
15
+
CXXFLAGS = "-std=c++14";
16
16
+
};
17
17
+
14
18
hardeningDisable = [ "format" ];
15
19
16
20
meta = with lib; {