ocamlPackages.fmt: 0.8.0 -> 0.8.2

This commit is contained in:
Vincent Laporte 2017-03-26 14:07:20 +00:00
parent 23d0f01e95
commit b90d1a4496

View File

@ -1,16 +1,17 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg, cmdliner }: { stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg, cmdliner, result, uchar }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "ocaml${ocaml.version}-fmt-0.8.0"; name = "ocaml${ocaml.version}-fmt-0.8.2";
src = fetchurl { src = fetchurl {
url = http://erratique.ch/software/fmt/releases/fmt-0.8.0.tbz; url = http://erratique.ch/software/fmt/releases/fmt-0.8.2.tbz;
sha256 = "16y7ibndnairb53j8a6qgipyqwjxncn4pl9jiw5bxjfjm59108px"; sha256 = "020qz74cm65bzrywf6kylm93gr5x1ayl6hfmxaql995f6whb388i";
}; };
unpackCmd = "tar xjf $src"; unpackCmd = "tar xjf $src";
buildInputs = [ ocaml findlib ocamlbuild opam topkg cmdliner ]; buildInputs = [ ocaml findlib ocamlbuild opam topkg cmdliner ];
propagatedBuildInputs = [ result uchar ];
inherit (topkg) buildPhase installPhase; inherit (topkg) buildPhase installPhase;