2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl
|
2021-01-19 06:50:56 +00:00
|
|
|
, ocaml, findlib, pkg-config, perl
|
2019-01-15 03:50:15 +00:00
|
|
|
, gmp
|
|
|
|
}:
|
2014-05-01 07:26:35 +00:00
|
|
|
|
2019-01-15 03:50:15 +00:00
|
|
|
let source =
|
2021-01-11 12:49:15 +00:00
|
|
|
if lib.versionAtLeast ocaml.version "4.02"
|
2016-10-13 19:12:46 +00:00
|
|
|
then {
|
2020-12-26 08:13:59 +00:00
|
|
|
version = "1.11";
|
|
|
|
url = "https://github.com/ocaml/Zarith/archive/release-1.11.tar.gz";
|
|
|
|
sha256 = "111n33flg4aq5xp5jfksqm4yyz6mzxx9ps9a4yl0dz8h189az5pr";
|
2016-10-13 19:12:46 +00:00
|
|
|
} else {
|
|
|
|
version = "1.3";
|
2020-04-01 01:11:51 +00:00
|
|
|
url = "http://forge.ocamlcore.org/frs/download.php/1471/zarith-1.3.tgz";
|
2016-10-13 19:12:46 +00:00
|
|
|
sha256 = "1mx3nxcn5h33qhx4gbg0hgvvydwlwdvdhqcnvfwnmf9jy3b8frll";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2019-08-08 15:35:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ocaml${ocaml.version}-zarith-${version}";
|
2019-01-15 03:50:15 +00:00
|
|
|
inherit (source) version;
|
|
|
|
src = fetchurl { inherit (source) url sha256; };
|
2014-05-01 07:26:35 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ ocaml findlib perl ];
|
2014-11-07 09:50:39 +00:00
|
|
|
propagatedBuildInputs = [ gmp ];
|
2014-05-01 07:26:35 +00:00
|
|
|
|
2016-10-25 16:06:39 +00:00
|
|
|
patchPhase = "patchShebangs ./z_pp.pl";
|
2019-10-31 10:26:23 +00:00
|
|
|
dontAddPrefix = true;
|
|
|
|
configureFlags = [ "-installdir ${placeholder "out"}/lib/ocaml/${ocaml.version}/site-lib" ];
|
2019-08-08 15:35:52 +00:00
|
|
|
|
|
|
|
preInstall = "mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs";
|
2014-05-01 07:26:35 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Fast, arbitrary precision OCaml integers";
|
2014-05-01 07:26:35 +00:00
|
|
|
homepage = "http://forge.ocamlcore.org/projects/zarith";
|
2014-10-10 13:43:58 +00:00
|
|
|
license = licenses.lgpl2;
|
2019-08-08 15:35:52 +00:00
|
|
|
inherit (ocaml.meta) platforms;
|
2014-10-10 13:43:58 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice vbgl ];
|
2014-05-01 07:26:35 +00:00
|
|
|
};
|
|
|
|
}
|