From b50ef4e3f226dde6c34817e3f92ca0aa3e18a72e Mon Sep 17 00:00:00 2001 From: Hongchang Wu Date: Wed, 7 Oct 2020 21:19:05 -0400 Subject: [PATCH] ocamlPackages.fmt: 0.8.8 -> 0.8.9 --- pkgs/development/ocaml-modules/fmt/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/ocaml-modules/fmt/default.nix b/pkgs/development/ocaml-modules/fmt/default.nix index d9b5afa9d3a..6b457a9d6dc 100644 --- a/pkgs/development/ocaml-modules/fmt/default.nix +++ b/pkgs/development/ocaml-modules/fmt/default.nix @@ -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 ]; }; }