summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2018-04-07 23:02:59 -0500
committerAustin Seipp <aseipp@pobox.com>2018-04-07 23:02:59 -0500
commit86c5420a2e8ff0ece4fd90db4e42fd52d069f533 (patch)
treed9b3d2a538ba860dae5e7c1ba22b4df9cd0b83f1 /pkgs/applications/science
parent4b7f2dd6223eee408181a1136068b2eda129d905 (diff)
downloadnixlib-86c5420a2e8ff0ece4fd90db4e42fd52d069f533.tar
nixlib-86c5420a2e8ff0ece4fd90db4e42fd52d069f533.tar.gz
nixlib-86c5420a2e8ff0ece4fd90db4e42fd52d069f533.tar.bz2
nixlib-86c5420a2e8ff0ece4fd90db4e42fd52d069f533.tar.lz
nixlib-86c5420a2e8ff0ece4fd90db4e42fd52d069f533.tar.xz
nixlib-86c5420a2e8ff0ece4fd90db4e42fd52d069f533.tar.zst
nixlib-86c5420a2e8ff0ece4fd90db4e42fd52d069f533.zip
nixpkgs: remove z3 4.5.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/logic/z3/4.5.0.nix31
1 files changed, 0 insertions, 31 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 ];
-  };
-}