Adds ocaml-fix
Fix is a simple OCaml module for computing the least solution of a system of monotone equations. Homepage: http://gallium.inria.fr/~fpottier/fix/
This commit is contained in:
parent
d45fc25035
commit
2f0994010a
23
pkgs/development/ocaml-modules/fix/default.nix
Normal file
23
pkgs/development/ocaml-modules/fix/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{stdenv, fetchurl, ocaml, findlib}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
|
||||||
|
name = "ocaml-fix-20130611";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://gallium.inria.fr/~fpottier/fix/fix-20130611.tar.gz;
|
||||||
|
sha256 = "1phlqcs1nb93x9cf0w0hnq2ck4dmn71zm4mxf60w96vb9yb9qzp0";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ocaml findlib ];
|
||||||
|
|
||||||
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://gallium.inria.fr/~fpottier/fix/;
|
||||||
|
description = "A simple OCaml module for computing the least solution of a system of monotone equations";
|
||||||
|
license = licenses.cecill-c;
|
||||||
|
platforms = ocaml.meta.platforms;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -3340,6 +3340,8 @@ let
|
|||||||
|
|
||||||
findlib = callPackage ../development/tools/ocaml/findlib { };
|
findlib = callPackage ../development/tools/ocaml/findlib { };
|
||||||
|
|
||||||
|
fix = callPackage ../development/ocaml-modules/fix { };
|
||||||
|
|
||||||
javalib = callPackage ../development/ocaml-modules/javalib {
|
javalib = callPackage ../development/ocaml-modules/javalib {
|
||||||
extlib = ocaml_extlib_maximal;
|
extlib = ocaml_extlib_maximal;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user