summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-04-08 09:18:07 +0100
committerGitHub <noreply@github.com>2018-04-08 09:18:07 +0100
commitf9b95e9ca0397d3606126bde9246c3e1da9ee4f1 (patch)
treea854505ad10c780fad02d71f86784b4f91793039
parented649f0cb3b8d863b2c564e384a56adca83c828d (diff)
parent86c5420a2e8ff0ece4fd90db4e42fd52d069f533 (diff)
downloadnixlib-f9b95e9ca0397d3606126bde9246c3e1da9ee4f1.tar
nixlib-f9b95e9ca0397d3606126bde9246c3e1da9ee4f1.tar.gz
nixlib-f9b95e9ca0397d3606126bde9246c3e1da9ee4f1.tar.bz2
nixlib-f9b95e9ca0397d3606126bde9246c3e1da9ee4f1.tar.lz
nixlib-f9b95e9ca0397d3606126bde9246c3e1da9ee4f1.tar.xz
nixlib-f9b95e9ca0397d3606126bde9246c3e1da9ee4f1.tar.zst
nixlib-f9b95e9ca0397d3606126bde9246c3e1da9ee4f1.zip
Merge pull request #38597 from thoughtpolice/rm-rf-z3-4.5.0
nixpkgs: remove z3 4.5.0
-rw-r--r--pkgs/applications/science/logic/z3/4.5.0.nix31
-rw-r--r--pkgs/top-level/all-packages.nix1
2 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/applications/science/logic/z3/4.5.0.nix b/pkgs/applications/science/logic/z3/4.5.0.nix
deleted file mode 100644
index 827cb2cbe3de..000000000000
--- a/pkgs/applications/science/logic/z3/4.5.0.nix
+++ /dev/null
@@ -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 ];
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 8448daadae6e..c51102cda626 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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 {};