Adds easy-format

This commit is contained in:
Vincent Laporte 2014-06-25 14:08:12 +02:00
parent a278c3dfa8
commit b598497da9
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{stdenv, fetchurl, ocaml, findlib}:
let
pname = "easy-format";
version = "1.0.2";
webpage = "http://mjambon.com/${pname}.html";
in
stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "http://mjambon.com/releases/${pname}/${name}.tar.gz";
sha256 = "07wlgprqvk92z0p2xzbnvh312ca6gvhy3xc6hxlqfawnnnin7rzi";
};
buildInputs = [ ocaml findlib ];
createFindlibDestdir = true;
meta = {
description = "A high-level and functional interface to the Format module of the OCaml standard library";
homepage = "${webpage}";
license = "bsd";
};
}

View File

@ -3183,6 +3183,8 @@ let
deriving = callPackage ../development/tools/ocaml/deriving { };
easy-format = callPackage ../development/ocaml-modules/easy-format { };
findlib = callPackage ../development/tools/ocaml/findlib { };
dypgen = callPackage ../development/ocaml-modules/dypgen { };