ocamlPackages.fmt: 0.8.8 -> 0.8.9

This commit is contained in:
Hongchang Wu 2020-10-07 21:19:05 -04:00 committed by Vincent Laporte
parent afa12b1128
commit b50ef4e3f2

View file

@ -5,12 +5,12 @@ then throw "fmt is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation rec {
version = "0.8.8";
version = "0.8.9";
pname = "ocaml${ocaml.version}-fmt";
src = fetchurl {
url = "https://erratique.ch/software/fmt/releases/fmt-${version}.tbz";
sha256 = "1iy0rwknd302mr15328g805k210xyigxbija6fzqqfzyb43azvk4";
sha256 = "0gkkkj4x678vxdda4xaw2dd44qjacavsvn5nx8gydfwah6pjbkxk";
};
nativeBuildInputs = [ ocaml findlib ocamlbuild ];
@ -19,11 +19,11 @@ stdenv.mkDerivation rec {
inherit (topkg) buildPhase installPhase;
meta = {
meta = with stdenv.lib; {
homepage = "https://erratique.ch/software/fmt";
license = stdenv.lib.licenses.isc;
license = licenses.isc;
description = "OCaml Format pretty-printer combinators";
inherit (ocaml.meta) platforms;
maintainers = [ stdenv.lib.maintainers.vbgl ];
maintainers = [ maintainers.vbgl ];
};
}