2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, cmdliner, seq, stdlib-shims }:
|
2016-10-25 18:19:35 +01:00
|
|
|
|
2021-01-11 12:49:15 +00:00
|
|
|
if !lib.versionAtLeast ocaml.version "4.05"
|
2020-04-09 17:58:36 +01:00
|
|
|
then throw "fmt is not available for OCaml ${ocaml.version}"
|
|
|
|
else
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-10-08 02:19:05 +01:00
|
|
|
version = "0.8.9";
|
2020-04-09 17:58:36 +01:00
|
|
|
pname = "ocaml${ocaml.version}-fmt";
|
2016-10-25 18:19:35 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-09 17:58:36 +01:00
|
|
|
url = "https://erratique.ch/software/fmt/releases/fmt-${version}.tbz";
|
2020-10-08 02:19:05 +01:00
|
|
|
sha256 = "0gkkkj4x678vxdda4xaw2dd44qjacavsvn5nx8gydfwah6pjbkxk";
|
2016-10-25 18:19:35 +01:00
|
|
|
};
|
|
|
|
|
2019-10-31 10:16:15 +00:00
|
|
|
nativeBuildInputs = [ ocaml findlib ocamlbuild ];
|
|
|
|
buildInputs = [ findlib topkg cmdliner ];
|
2020-04-09 17:58:36 +01:00
|
|
|
propagatedBuildInputs = [ seq stdlib-shims ];
|
2016-10-25 18:19:35 +01:00
|
|
|
|
|
|
|
inherit (topkg) buildPhase installPhase;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://erratique.ch/software/fmt";
|
2020-10-08 02:19:05 +01:00
|
|
|
license = licenses.isc;
|
2016-10-25 18:19:35 +01:00
|
|
|
description = "OCaml Format pretty-printer combinators";
|
|
|
|
inherit (ocaml.meta) platforms;
|
2020-10-08 02:19:05 +01:00
|
|
|
maintainers = [ maintainers.vbgl ];
|
2016-10-25 18:19:35 +01:00
|
|
|
};
|
|
|
|
}
|