ocamlPackages.gen: init at 0.3

This commit is contained in:
Ricardo M. Correia 2016-02-17 18:53:48 +01:00
parent c44176237a
commit e20b978708
2 changed files with 27 additions and 0 deletions

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, ocaml, findlib, qtest, ounit }:
let version = "0.3"; in
stdenv.mkDerivation {
name = "ocaml-gen-${version}";
src = fetchFromGitHub {
owner = "c-cube";
repo = "gen";
rev = "${version}";
sha256 = "0xrnkcfa5q86ammf49j5hynw5563x5sa2mk7vqf7g097j1szif72";
};
buildInputs = [ ocaml findlib qtest ounit ];
createFindlibDestdir = true;
meta = {
homepage = https://github.com/c-cube/gen;
description = "Simple, efficient iterators for OCaml";
license = stdenv.lib.licenses.bsd3;
platforms = ocaml.meta.platforms;
};
}

@ -4687,6 +4687,8 @@ let
functory = callPackage ../development/ocaml-modules/functory { };
gen = callPackage ../development/ocaml-modules/gen { };
herelib = callPackage ../development/ocaml-modules/herelib { };
io-page = callPackage ../development/ocaml-modules/io-page { };