mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 00:12:39 +03:00
z3: also needs setuptools
This commit is contained in:
parent
dabcccce3f
commit
6ec8fe0408
@ -1,8 +1,6 @@
|
|||||||
{ stdenv, fetchFromGitHub, python2, fixDarwinDylibNames }:
|
{ stdenv, fetchFromGitHub, python, fixDarwinDylibNames }:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
python = python2;
|
|
||||||
in stdenv.mkDerivation rec {
|
|
||||||
name = "z3-${version}";
|
name = "z3-${version}";
|
||||||
version = "4.6.0";
|
version = "4.6.0";
|
||||||
|
|
||||||
@ -14,6 +12,7 @@ in stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ python fixDarwinDylibNames ];
|
buildInputs = [ python fixDarwinDylibNames ];
|
||||||
|
propagatedBuildInputs = [ python.pkgs.setuptools ];
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
|
@ -19468,7 +19468,7 @@ with pkgs;
|
|||||||
};
|
};
|
||||||
|
|
||||||
z3_4_5_0 = callPackage ../applications/science/logic/z3/4.5.0.nix {};
|
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 {};
|
aiger = callPackage ../applications/science/logic/aiger {};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user