lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 25 lines 746 B view raw
1{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, cmdliner, result, uchar }: 2 3stdenv.mkDerivation { 4 name = "ocaml${ocaml.version}-fmt-0.8.4"; 5 6 src = fetchurl { 7 url = http://erratique.ch/software/fmt/releases/fmt-0.8.4.tbz; 8 sha256 = "1qilsbisqqhmn8b1ar9lvjbgz8vf4gmqwqjnnjzgld2a3gmh8qvv"; 9 }; 10 11 unpackCmd = "tar xjf $src"; 12 13 buildInputs = [ ocaml findlib ocamlbuild topkg cmdliner ]; 14 propagatedBuildInputs = [ result uchar ]; 15 16 inherit (topkg) buildPhase installPhase; 17 18 meta = { 19 homepage = http://erratique.ch/software/fmt; 20 license = stdenv.lib.licenses.isc; 21 description = "OCaml Format pretty-printer combinators"; 22 inherit (ocaml.meta) platforms; 23 maintainers = [ stdenv.lib.maintainers.vbgl ]; 24 }; 25}