2018-02-14 10:00:41 +00:00
|
|
|
{ stdenv, fetchFromGitHub, python, fixDarwinDylibNames }:
|
2014-03-08 04:45:15 +00:00
|
|
|
|
2018-02-14 10:00:41 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-03-08 04:45:15 +00:00
|
|
|
name = "z3-${version}";
|
2018-05-25 02:10:01 +00:00
|
|
|
version = "4.7.1";
|
2015-03-27 22:46:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Z3Prover";
|
|
|
|
repo = "z3";
|
2018-05-25 02:10:01 +00:00
|
|
|
rev = "3b1b82bef05a1b5fd69ece79c80a95fb6d72a990";
|
|
|
|
sha256 = "1s850r6qifwl83zzgvrb5l0jigvmymzpv18ph71hg2bcpk7kjw3d";
|
2014-03-08 04:45:15 +00:00
|
|
|
};
|
|
|
|
|
2017-01-03 22:08:14 +00:00
|
|
|
buildInputs = [ python fixDarwinDylibNames ];
|
2018-02-14 10:00:41 +00:00
|
|
|
propagatedBuildInputs = [ python.pkgs.setuptools ];
|
2014-03-08 04:45:15 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-11-08 21:13:56 +00:00
|
|
|
configurePhase = ''
|
|
|
|
${python.interpreter} scripts/mk_make.py --prefix=$out --python --pypkgdir=$out/${python.sitePackages}
|
|
|
|
cd build
|
2014-03-08 04:45:15 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2015-01-23 16:41:55 +00:00
|
|
|
description = "A high-performance theorem prover and SMT solver";
|
2017-08-17 21:53:40 +00:00
|
|
|
homepage = "https://github.com/Z3Prover/z3";
|
2015-03-27 22:46:35 +00:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2014-03-08 04:45:15 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|