Skip to content

Commit

Permalink
z3: also needs setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Feb 14, 2018
1 parent dabcccc commit 6ec8fe0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions pkgs/applications/science/logic/z3/default.nix
@@ -1,8 +1,6 @@
{ stdenv, fetchFromGitHub, python2, fixDarwinDylibNames }:
{ stdenv, fetchFromGitHub, python, fixDarwinDylibNames }:

let
python = python2;
in stdenv.mkDerivation rec {
stdenv.mkDerivation rec {
name = "z3-${version}";
version = "4.6.0";

Expand All @@ -14,6 +12,7 @@ in stdenv.mkDerivation rec {
};

buildInputs = [ python fixDarwinDylibNames ];
propagatedBuildInputs = [ python.pkgs.setuptools ];
enableParallelBuilding = true;

configurePhase = ''
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -19468,7 +19468,7 @@ with pkgs;
};

z3_4_5_0 = callPackage ../applications/science/logic/z3/4.5.0.nix {};
z3 = callPackage ../applications/science/logic/z3 {};
z3 = callPackage ../applications/science/logic/z3 { python = python2; };

aiger = callPackage ../applications/science/logic/aiger {};

Expand Down

0 comments on commit 6ec8fe0

Please sign in to comment.