mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
4e42cac49d
This change was produced by searching for remaining occurrences of stdenv.lib and replacing them manually. Reference #108938.
26 lines
725 B
Nix
26 lines
725 B
Nix
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild }:
|
|
|
|
assert lib.versionAtLeast (lib.getVersion ocaml) "3.12";
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "ocaml-fix-20130611";
|
|
|
|
src = fetchurl {
|
|
url = "http://gallium.inria.fr/~fpottier/fix/fix-20130611.tar.gz";
|
|
sha256 = "1phlqcs1nb93x9cf0w0hnq2ck4dmn71zm4mxf60w96vb9yb9qzp0";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ocamlbuild ];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
meta = with 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;
|
|
maintainers = [ maintainers.vbgl ];
|
|
platforms = ocaml.meta.platforms or [];
|
|
};
|
|
}
|