nixpkgs/pkgs/development/ocaml-modules/zarith/default.nix

42 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl
, ocaml, findlib, pkgconfig, perl
, gmp
}:
let source =
2016-10-13 15:12:46 -04:00
if stdenv.lib.versionAtLeast ocaml.version "4.02"
then {
2019-10-31 06:26:23 -04:00
version = "1.9";
url = https://github.com/ocaml/Zarith/archive/release-1.9.tar.gz;
sha256 = "1xrqcaj5gp52xp4ybpnblw8ciwlgrr0zi7rg7hnk8x83isjkpmwx";
2016-10-13 15:12:46 -04:00
} else {
version = "1.3";
url = http://forge.ocamlcore.org/frs/download.php/1471/zarith-1.3.tgz;
sha256 = "1mx3nxcn5h33qhx4gbg0hgvvydwlwdvdhqcnvfwnmf9jy3b8frll";
};
in
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-zarith-${version}";
inherit (source) version;
src = fetchurl { inherit (source) url sha256; };
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ocaml findlib perl ];
2014-11-07 04:50:39 -05:00
propagatedBuildInputs = [ gmp ];
patchPhase = "patchShebangs ./z_pp.pl";
2019-10-31 06:26:23 -04:00
dontAddPrefix = true;
configureFlags = [ "-installdir ${placeholder "out"}/lib/ocaml/${ocaml.version}/site-lib" ];
preInstall = "mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs";
2014-10-10 09:43:58 -04:00
meta = with stdenv.lib; {
description = "Fast, arbitrary precision OCaml integers";
homepage = "http://forge.ocamlcore.org/projects/zarith";
2014-10-10 09:43:58 -04:00
license = licenses.lgpl2;
inherit (ocaml.meta) platforms;
2014-10-10 09:43:58 -04:00
maintainers = with maintainers; [ thoughtpolice vbgl ];
};
}