z3: 4.8.4 -> 4.8.5

* drop included patch
* pname-ify
This commit is contained in:
Will Dietz
2019-06-10 17:55:26 -07:00
committed by Austin Seipp
parent 4c4afb3cb9
commit e397f4716c
2 changed files with 5 additions and 75 deletions
@@ -1,20 +1,16 @@
{ stdenv, fetchFromGitHub, python, fixDarwinDylibNames }:
stdenv.mkDerivation rec {
name = "z3-${version}";
version = "4.8.4";
pname = "z3";
version = "4.8.5";
src = fetchFromGitHub {
owner = "Z3Prover";
repo = "z3";
rev = name;
sha256 = "014igqm5vwswz0yhz0cdxsj3a6dh7i79hvhgc3jmmmz3z0xm1gyn";
repo = pname;
rev = "Z3-${version}";
sha256 = "11sy98clv7ln0a5vqxzvh6wwqbswsjbik2084hav5kfws4xvklfa";
};
patches = [
./0001-fix-2131.patch
];
buildInputs = [ python fixDarwinDylibNames ];
propagatedBuildInputs = [ python.pkgs.setuptools ];
enableParallelBuilding = true;