ocamlPackages.fmt: init at 0.8.0

fmt is an OCaml library of Format pretty-printer combinators.

Homepage: http://erratique.ch/software/fmt

+28
+26
pkgs/development/ocaml-modules/fmt/default.nix
···
··· 1 + { stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg, cmdliner }: 2 + 3 + stdenv.mkDerivation { 4 + name = "ocaml${ocaml.version}-fmt-0.8.0"; 5 + 6 + src = fetchurl { 7 + url = http://erratique.ch/software/fmt/releases/fmt-0.8.0.tbz; 8 + sha256 = "16y7ibndnairb53j8a6qgipyqwjxncn4pl9jiw5bxjfjm59108px"; 9 + }; 10 + 11 + unpackCmd = "tar xjf $src"; 12 + 13 + buildInputs = [ ocaml findlib ocamlbuild opam topkg cmdliner ]; 14 + 15 + inherit (topkg) buildPhase installPhase; 16 + 17 + createFindlibDestdir = true; 18 + 19 + meta = { 20 + homepage = http://erratique.ch/software/fmt; 21 + license = stdenv.lib.licenses.isc; 22 + description = "OCaml Format pretty-printer combinators"; 23 + inherit (ocaml.meta) platforms; 24 + maintainers = [ stdenv.lib.maintainers.vbgl ]; 25 + }; 26 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 176 177 fix = callPackage ../development/ocaml-modules/fix { }; 178 179 fontconfig = callPackage ../development/ocaml-modules/fontconfig { 180 inherit (pkgs) fontconfig; 181 };
··· 176 177 fix = callPackage ../development/ocaml-modules/fix { }; 178 179 + fmt = callPackage ../development/ocaml-modules/fmt { }; 180 + 181 fontconfig = callPackage ../development/ocaml-modules/fontconfig { 182 inherit (pkgs) fontconfig; 183 };