2019-04-23 16:21:44 +02:00
|
|
|
{ stdenv, buildOcaml, fetchurl
|
2019-01-15 04:50:15 +01:00
|
|
|
, ocaml, findlib, pkgconfig, perl
|
|
|
|
, gmp
|
|
|
|
}:
|
2014-05-01 09:26:35 +02:00
|
|
|
|
2019-01-15 04:50:15 +01:00
|
|
|
let source =
|
2016-10-13 21:12:46 +02:00
|
|
|
if stdenv.lib.versionAtLeast ocaml.version "4.02"
|
|
|
|
then {
|
2019-04-23 16:23:04 +02:00
|
|
|
version = "1.8";
|
|
|
|
url = https://github.com/ocaml/Zarith/archive/release-1.8.tar.gz;
|
|
|
|
sha256 = "1cn63c97aij19nrw5hc1zh1jpnbsdkzq99zyyk649c4s3xi3iqq7";
|
2016-10-13 21:12:46 +02:00
|
|
|
} else {
|
|
|
|
version = "1.3";
|
|
|
|
url = http://forge.ocamlcore.org/frs/download.php/1471/zarith-1.3.tgz;
|
|
|
|
sha256 = "1mx3nxcn5h33qhx4gbg0hgvvydwlwdvdhqcnvfwnmf9jy3b8frll";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2019-04-23 16:21:44 +02:00
|
|
|
buildOcaml rec {
|
|
|
|
name = "zarith";
|
2019-01-15 04:50:15 +01:00
|
|
|
inherit (source) version;
|
|
|
|
src = fetchurl { inherit (source) url sha256; };
|
2014-05-01 09:26:35 +02:00
|
|
|
|
2019-04-23 16:21:44 +02:00
|
|
|
minimumSupportedOcamlVersion = "3.12.1";
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ ocaml findlib perl ];
|
2014-11-07 10:50:39 +01:00
|
|
|
propagatedBuildInputs = [ gmp ];
|
2014-05-01 09:26:35 +02:00
|
|
|
|
2019-04-23 16:21:44 +02:00
|
|
|
# needed so setup-hook.sh sets CAML_LD_LIBRARY_PATH for dllzarith.so
|
|
|
|
hasSharedObjects = true;
|
|
|
|
|
2016-10-25 18:06:39 +02:00
|
|
|
patchPhase = "patchShebangs ./z_pp.pl";
|
2014-05-01 09:26:35 +02:00
|
|
|
configurePhase = ''
|
2016-10-05 09:32:30 +02:00
|
|
|
./configure -installdir $out/lib/ocaml/${ocaml.version}/site-lib
|
2014-05-01 09:26:35 +02:00
|
|
|
'';
|
2019-04-23 16:21:44 +02:00
|
|
|
preInstall = "mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib";
|
2014-05-01 09:26:35 +02:00
|
|
|
|
2014-10-10 15:43:58 +02:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "Fast, arbitrary precision OCaml integers";
|
2014-05-01 09:26:35 +02:00
|
|
|
homepage = "http://forge.ocamlcore.org/projects/zarith";
|
2014-10-10 15:43:58 +02:00
|
|
|
license = licenses.lgpl2;
|
2015-12-24 18:49:07 +01:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2014-10-10 15:43:58 +02:00
|
|
|
maintainers = with maintainers; [ thoughtpolice vbgl ];
|
2014-05-01 09:26:35 +02:00
|
|
|
};
|
|
|
|
}
|