about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/fmt
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-03-26 14:07:20 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-03-26 14:15:11 +0000
commitb90d1a4496eebad6fc5bda330da3d01581627e3d (patch)
tree40e00306f4ec3aca71cd2286af4be86d67672d76 /pkgs/development/ocaml-modules/fmt
parent23d0f01e9584394d4c05ee6ff395b69d60b8f370 (diff)
downloadnixlib-b90d1a4496eebad6fc5bda330da3d01581627e3d.tar
nixlib-b90d1a4496eebad6fc5bda330da3d01581627e3d.tar.gz
nixlib-b90d1a4496eebad6fc5bda330da3d01581627e3d.tar.bz2
nixlib-b90d1a4496eebad6fc5bda330da3d01581627e3d.tar.lz
nixlib-b90d1a4496eebad6fc5bda330da3d01581627e3d.tar.xz
nixlib-b90d1a4496eebad6fc5bda330da3d01581627e3d.tar.zst
nixlib-b90d1a4496eebad6fc5bda330da3d01581627e3d.zip
ocamlPackages.fmt: 0.8.0 -> 0.8.2
Diffstat (limited to 'pkgs/development/ocaml-modules/fmt')
-rw-r--r--pkgs/development/ocaml-modules/fmt/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/fmt/default.nix b/pkgs/development/ocaml-modules/fmt/default.nix
index 9994d156a4c2..469f808947ab 100644
--- a/pkgs/development/ocaml-modules/fmt/default.nix
+++ b/pkgs/development/ocaml-modules/fmt/default.nix
@@ -1,16 +1,17 @@
-{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg, cmdliner }:
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg, cmdliner, result, uchar }:
 
 stdenv.mkDerivation {
-  name = "ocaml${ocaml.version}-fmt-0.8.0";
+  name = "ocaml${ocaml.version}-fmt-0.8.2";
 
   src = fetchurl {
-    url = http://erratique.ch/software/fmt/releases/fmt-0.8.0.tbz;
-    sha256 = "16y7ibndnairb53j8a6qgipyqwjxncn4pl9jiw5bxjfjm59108px";
+    url = http://erratique.ch/software/fmt/releases/fmt-0.8.2.tbz;
+    sha256 = "020qz74cm65bzrywf6kylm93gr5x1ayl6hfmxaql995f6whb388i";
   };
 
   unpackCmd = "tar xjf $src";
 
   buildInputs = [ ocaml findlib ocamlbuild opam topkg cmdliner ];
+  propagatedBuildInputs = [ result uchar ];
 
   inherit (topkg) buildPhase installPhase;