···14141515 postPatch = lib.optionalString stdenv.cc.isClang ''
1616 substituteInPlace Makefile --replace "-fno-guess-branch-probability" ""
1717+1818+ for f in $(find -name "*.h" -or -name "*.cpp"); do
1919+ substituteInPlace "$f" --replace-quiet "log2" "_log2"
2020+ done
1721 '';
18221923 buildFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "CXX=${stdenv.cc.targetPrefix}c++" ];
-2
pkgs/applications/science/math/sage/sage-env.nix
···3939, ecm
4040, lcalc
4141, rubiks
4242-, flintqs
4342, blas
4443, lapack
4544, flint3
···9392 ecm
9493 lcalc
9594 rubiks
9696- flintqs
9795 jdk # only needed for `jmol` which may be replaced in the future
9896 less # needed to prevent transient test errors until https://github.com/ipython/ipython/pull/11864 is resolved
9997 ]
···3737 # see https://github.com/NixOS/nixpkgs/pull/117465
3838 if stdenv.hostPlatform.system == "aarch64-linux" then "linux-arm" else
3939 if stdenv.hostPlatform.system == "armv7l-linux" then "linux-arm" else
4040+ if stdenv.hostPlatform.system == "aarch64-darwin" then "macosx" else
4041 if stdenv.hostPlatform.system == "x86_64-darwin" then "macosx-thr" else
4142 if stdenv.hostPlatform.system == "i686-darwin" then "macosx-64-thr" else
4243 if stdenv.hostPlatform.system == "i686-cygwin" then "win32" else
···347347 fitnesstrax = throw "fitnesstrax was removed from nixpkgs because it disappeared upstream and no longer compiles"; # added 2023-07-04
348348 flashrom-stable = flashprog; # Added 2024-03-01
349349 flatbuffers_2_0 = flatbuffers; # Added 2022-05-12
350350+ flintqs = throw "FlintQS has been removed due to lack of maintenance and security issues; use SageMath or FLINT instead"; # Added 2024-03-21
350351 flutter2 = throw "flutter2 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2023-07-03
351352 flutter37 = throw "flutter37 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2023-07-03
352353 foldingathome = fahclient; # Added 2020-09-03