Skip to content

Commit

Permalink
ocamlPackages.fmt: 0.8.8 -> 0.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
hongchangwu authored and vbgl committed Oct 8, 2020
1 parent afa12b1 commit b50ef4e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/development/ocaml-modules/fmt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 ];
Expand All @@ -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 ];
};
}

0 comments on commit b50ef4e

Please sign in to comment.