z3_4_4_0: Fix build on darwin.

main
Shea Levy 2 years ago
parent 8e6206f9c9
commit 4d781f329d
No known key found for this signature in database
GPG Key ID: 5C0BD6957D86FE27
  1. 2
      pkgs/applications/science/logic/z3/4.4.0.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
buildInputs = [ python ];
enableParallelBuilding = true;
CXXFLAGS = if stdenv.isDarwin then "-std=gnu++98" else null;
configurePhase = "python scripts/mk_make.py --prefix=$out && cd build";
# z3's install phase is stupid because it tries to calculate the

@ -33631,7 +33631,7 @@ with pkgs;
z3 = z3_4_8;
z3_4_4_0 = callPackage ../applications/science/logic/z3/4.4.0.nix {
python = python2;
stdenv = gcc49Stdenv;
stdenv = if stdenv.isDarwin then stdenv else gcc49Stdenv;
};
z3-tptp = callPackage ../applications/science/logic/z3/tptp.nix {};

Loading…
Cancel
Save