2014-09-12 07:45:38 +00:00
|
|
|
|
{stdenv, fetchurl, ocaml, findlib}:
|
|
|
|
|
|
2014-09-21 10:02:55 +00:00
|
|
|
|
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.12";
|
|
|
|
|
|
2014-09-12 07:45:38 +00:00
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
|
|
|
|
|
name = "ocaml-pprint-20140424";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = http://gallium.inria.fr/~fpottier/pprint/pprint-20140424.tar.gz;
|
|
|
|
|
sha256 = "0sc9q89dnyarcg24czyhr6ams0ylqvia3745s6rfwd2nldpygsdk";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
buildInputs = [ ocaml findlib ];
|
|
|
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
installFlags = "-C src";
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
homepage = http://gallium.inria.fr/~fpottier/pprint/;
|
|
|
|
|
description = "An OCaml adaptation of Wadler’s and Leijen’s prettier printer";
|
|
|
|
|
license = licenses.cecill-c;
|
2014-09-21 10:02:55 +00:00
|
|
|
|
maintainers = [ maintainers.vbgl ];
|
2014-09-12 07:45:38 +00:00
|
|
|
|
platforms = ocaml.meta.platforms;
|
|
|
|
|
};
|
|
|
|
|
}
|