ocamlPackages.zarith: 1.8 -> 1.9

This commit is contained in:
Yorick van Pelt 2019-10-31 17:26:23 +07:00 committed by Alexander Bantyev
parent 5a40ccfa65
commit a1cc0f1d5f
No known key found for this signature in database
GPG Key ID: E081FF12ADCB4AD5

View File

@ -6,9 +6,9 @@
let source =
if stdenv.lib.versionAtLeast ocaml.version "4.02"
then {
version = "1.9.1";
url = https://github.com/ocaml/Zarith/archive/release-1.9.1.tar.gz;
sha256 = "0pfa271476dic5pvn6kxz3dfswxs6kqm2cxmhdx5xq2ayca05gj9";
version = "1.9";
url = https://github.com/ocaml/Zarith/archive/release-1.9.tar.gz;
sha256 = "1xrqcaj5gp52xp4ybpnblw8ciwlgrr0zi7rg7hnk8x83isjkpmwx";
} else {
version = "1.3";
url = http://forge.ocamlcore.org/frs/download.php/1471/zarith-1.3.tgz;
@ -26,9 +26,8 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ gmp ];
patchPhase = "patchShebangs ./z_pp.pl";
configurePhase = ''
./configure -installdir $out/lib/ocaml/${ocaml.version}/site-lib
'';
dontAddPrefix = true;
configureFlags = [ "-installdir ${placeholder "out"}/lib/ocaml/${ocaml.version}/site-lib" ];
preInstall = "mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs";