Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / ocaml-modules / fix / default.nix
blobd4ce484653b9349173894bdca8c6d205b29cddd4
1 { lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild }:
3 assert lib.versionAtLeast (lib.getVersion ocaml) "3.12";
5 stdenv.mkDerivation {
7   name = "ocaml-fix-20130611";
9   src = fetchurl {
10     url = "http://gallium.inria.fr/~fpottier/fix/fix-20130611.tar.gz";
11     sha256 = "1phlqcs1nb93x9cf0w0hnq2ck4dmn71zm4mxf60w96vb9yb9qzp0";
12   };
14   buildInputs = [ ocaml findlib ocamlbuild ];
16   createFindlibDestdir = true;
18   meta = with lib; {
19     homepage = "http://gallium.inria.fr/~fpottier/fix/";
20     description = "A simple OCaml module for computing the least solution of a system of monotone equations";
21     license = licenses.cecill-c;
22     maintainers = [ maintainers.vbgl ];
23     platforms = ocaml.meta.platforms or [];
24   };