Merge pull request #38597 from thoughtpolice/rm-rf-z3-4.5.0

nixpkgs: remove z3 4.5.0
This commit is contained in:
Jörg Thalheim 2018-04-08 09:18:07 +01:00 committed by GitHub
commit f9b95e9ca0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 32 deletions

View file

@ -1,31 +0,0 @@
{ stdenv, fetchFromGitHub, python2, fixDarwinDylibNames }:
let
python = python2;
in stdenv.mkDerivation rec {
name = "z3-${version}";
version = "4.5.0";
src = fetchFromGitHub {
owner = "Z3Prover";
repo = "z3";
rev = "z3-4.5.0";
sha256 = "0ssp190ksak93hiz61z90x6hy9hcw1ywp8b2dzmbhn6fbd4bnxzp";
};
buildInputs = [ python fixDarwinDylibNames ];
enableParallelBuilding = true;
configurePhase = ''
${python.interpreter} scripts/mk_make.py --prefix=$out --python --pypkgdir=$out/${python.sitePackages}
cd build
'';
meta = {
description = "A high-performance theorem prover and SMT solver";
homepage = "https://github.com/Z3Prover/z3";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}

View file

@ -20062,7 +20062,6 @@ with pkgs;
gmp-static = gmp.override { withStatic = true; };
};
z3_4_5_0 = callPackage ../applications/science/logic/z3/4.5.0.nix {};
z3 = callPackage ../applications/science/logic/z3 { python = python2; };
tlaplus = callPackage ../applications/science/logic/tlaplus {};