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

37 lines
1.0 KiB
Nix
Raw Normal View History

2021-03-04 21:03:28 +00:00
{ lib, stdenv, fetchFromGitHub
, ocaml, findlib, pkg-config
, gmp
}:
2021-03-04 21:03:28 +00:00
if !lib.versionAtLeast ocaml.version "4.04"
then throw "zarith is not available for OCaml ${ocaml.version}"
else
2016-10-13 19:12:46 +00:00
stdenv.mkDerivation rec {
2021-03-04 21:03:28 +00:00
pname = "ocaml${ocaml.version}-zarith";
version = "1.12";
src = fetchFromGitHub {
owner = "ocaml";
repo = "Zarith";
rev = "release-${version}";
sha256 = "1jslm1rv1j0ya818yh23wf3bb6hz7qqj9pn5fwl45y9mqyqa01s9";
};
nativeBuildInputs = [ pkg-config ];
2021-03-04 21:03:28 +00:00
buildInputs = [ ocaml findlib ];
2014-11-07 09:50:39 +00:00
propagatedBuildInputs = [ gmp ];
2019-10-31 10:26:23 +00:00
dontAddPrefix = true;
configureFlags = [ "-installdir ${placeholder "out"}/lib/ocaml/${ocaml.version}/site-lib" ];
preInstall = "mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs";
meta = with lib; {
description = "Fast, arbitrary precision OCaml integers";
homepage = "http://forge.ocamlcore.org/projects/zarith";
2014-10-10 13:43:58 +00:00
license = licenses.lgpl2;
inherit (ocaml.meta) platforms;
2014-10-10 13:43:58 +00:00
maintainers = with maintainers; [ thoughtpolice vbgl ];
};
}