lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

gecode_3: fix build with clang 16

+7
+7
pkgs/development/libraries/gecode/3.nix
··· 18 18 (import ./fix-const-weights-clang-patch.nix fetchpatch) 19 19 ]; 20 20 21 + postPatch = '' 22 + substituteInPlace gecode/flatzinc/lexer.yy.cpp \ 23 + --replace "register " "" 24 + ''; 25 + 21 26 nativeBuildInputs = [ perl ]; 22 27 23 28 preConfigure = "patchShebangs configure"; 29 + 30 + env.CXXFLAGS = lib.optionalString stdenv.cc.isClang "-std=c++14"; 24 31 25 32 meta = with lib; { 26 33 license = licenses.mit;