2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild }:
|
2014-09-12 09:40:09 +02:00
|
|
|
|
2021-01-11 13:49:15 +01:00
|
|
|
assert lib.versionAtLeast (lib.getVersion ocaml) "3.12";
|
2014-09-21 12:02:55 +02:00
|
|
|
|
2014-09-12 09:40:09 +02:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
|
|
|
name = "ocaml-fix-20130611";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-01 03:11:51 +02:00
|
|
|
url = "http://gallium.inria.fr/~fpottier/fix/fix-20130611.tar.gz";
|
2014-09-12 09:40:09 +02:00
|
|
|
sha256 = "1phlqcs1nb93x9cf0w0hnq2ck4dmn71zm4mxf60w96vb9yb9qzp0";
|
|
|
|
};
|
|
|
|
|
2016-10-08 08:44:25 +02:00
|
|
|
buildInputs = [ ocaml findlib ocamlbuild ];
|
2014-09-12 09:40:09 +02:00
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://gallium.inria.fr/~fpottier/fix/";
|
2014-09-12 09:40:09 +02:00
|
|
|
description = "A simple OCaml module for computing the least solution of a system of monotone equations";
|
|
|
|
license = licenses.cecill-c;
|
2014-09-21 12:02:55 +02:00
|
|
|
maintainers = [ maintainers.vbgl ];
|
2015-12-24 18:49:07 +01:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2014-09-12 09:40:09 +02:00
|
|
|
};
|
|
|
|
}
|