ocamlPackages.zarith: 1.7 -> 1.8
This commit is contained in:
parent
b5c224d2a5
commit
1c84236afb
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildOcaml, fetchurl
|
{ stdenv, fetchurl
|
||||||
, ocaml, findlib, pkgconfig, perl
|
, ocaml, findlib, pkgconfig, perl
|
||||||
, gmp
|
, gmp
|
||||||
}:
|
}:
|
||||||
@ -6,9 +6,9 @@
|
|||||||
let source =
|
let source =
|
||||||
if stdenv.lib.versionAtLeast ocaml.version "4.02"
|
if stdenv.lib.versionAtLeast ocaml.version "4.02"
|
||||||
then {
|
then {
|
||||||
version = "1.7";
|
version = "1.8";
|
||||||
url = https://github.com/ocaml/Zarith/archive/release-1.7.tar.gz;
|
url = https://github.com/ocaml/Zarith/archive/release-1.8.tar.gz;
|
||||||
sha256 = "0fmblap5nsbqq0dab63d6b7lsxpc3snkgz7jfldi2qa4s1kbnhfn";
|
sha256 = "1cn63c97aij19nrw5hc1zh1jpnbsdkzq99zyyk649c4s3xi3iqq7";
|
||||||
} else {
|
} else {
|
||||||
version = "1.3";
|
version = "1.3";
|
||||||
url = http://forge.ocamlcore.org/frs/download.php/1471/zarith-1.3.tgz;
|
url = http://forge.ocamlcore.org/frs/download.php/1471/zarith-1.3.tgz;
|
||||||
@ -16,25 +16,20 @@ let source =
|
|||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
||||||
buildOcaml rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "zarith";
|
name = "ocaml${ocaml.version}-zarith-${version}";
|
||||||
inherit (source) version;
|
inherit (source) version;
|
||||||
src = fetchurl { inherit (source) url sha256; };
|
src = fetchurl { inherit (source) url sha256; };
|
||||||
|
|
||||||
minimumSupportedOcamlVersion = "3.12.1";
|
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ ocaml findlib perl ];
|
buildInputs = [ ocaml findlib perl ];
|
||||||
propagatedBuildInputs = [ gmp ];
|
propagatedBuildInputs = [ gmp ];
|
||||||
|
|
||||||
# needed so setup-hook.sh sets CAML_LD_LIBRARY_PATH for dllzarith.so
|
|
||||||
hasSharedObjects = true;
|
|
||||||
|
|
||||||
patchPhase = "patchShebangs ./z_pp.pl";
|
patchPhase = "patchShebangs ./z_pp.pl";
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
./configure -installdir $out/lib/ocaml/${ocaml.version}/site-lib
|
./configure -installdir $out/lib/ocaml/${ocaml.version}/site-lib
|
||||||
'';
|
'';
|
||||||
preInstall = "mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib";
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Fast, arbitrary precision OCaml integers";
|
description = "Fast, arbitrary precision OCaml integers";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user