ocamlPackages.gen: init at 0.3

+27
+25
pkgs/development/ocaml-modules/gen/default.nix
··· 1 + { stdenv, fetchFromGitHub, ocaml, findlib, qtest, ounit }: 2 + 3 + let version = "0.3"; in 4 + 5 + stdenv.mkDerivation { 6 + name = "ocaml-gen-${version}"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "c-cube"; 10 + repo = "gen"; 11 + rev = "${version}"; 12 + sha256 = "0xrnkcfa5q86ammf49j5hynw5563x5sa2mk7vqf7g097j1szif72"; 13 + }; 14 + 15 + buildInputs = [ ocaml findlib qtest ounit ]; 16 + 17 + createFindlibDestdir = true; 18 + 19 + meta = { 20 + homepage = https://github.com/c-cube/gen; 21 + description = "Simple, efficient iterators for OCaml"; 22 + license = stdenv.lib.licenses.bsd3; 23 + platforms = ocaml.meta.platforms; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 4687 4687 4688 4688 functory = callPackage ../development/ocaml-modules/functory { }; 4689 4689 4690 + gen = callPackage ../development/ocaml-modules/gen { }; 4691 + 4690 4692 herelib = callPackage ../development/ocaml-modules/herelib { }; 4691 4693 4692 4694 io-page = callPackage ../development/ocaml-modules/io-page { };