Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ppx_expect: init at 113.33.03

+21
+19
pkgs/development/ocaml-modules/janestreet/ppx-expect.nix
··· 1 + {stdenv, buildOcamlJane, 2 + ppx_assert, ppx_compare, ppx_core, ppx_custom_printf, ppx_driver, 3 + ppx_fields_conv, ppx_here, ppx_inline_test, ppx_sexp_conv, ppx_tools, 4 + ppx_variants_conv, re, sexplib, variantslib, fieldslib}: 5 + 6 + buildOcamlJane rec { 7 + name = "ppx_expect"; 8 + hash = "0cwagb4cj3x1vsr19kyfa9pxlvaz9a5v863cahi5glinsh4mzgdx"; 9 + propagatedBuildInputs = 10 + [ ppx_assert ppx_compare ppx_core ppx_custom_printf ppx_driver 11 + ppx_fields_conv ppx_here ppx_inline_test ppx_sexp_conv ppx_tools 12 + ppx_variants_conv re sexplib variantslib fieldslib ]; 13 + 14 + meta = with stdenv.lib; { 15 + description = "Cram-like framework for OCaml"; 16 + maintainers = [ maintainers.maurer ]; 17 + license = licenses.asl20; 18 + }; 19 + }
+2
pkgs/top-level/all-packages.nix
··· 5553 5553 ppx_typerep_conv = callPackage ../development/ocaml-modules/janestreet/ppx-typerep-conv.nix {}; 5554 5554 5555 5555 ppx_variants_conv = callPackage ../development/ocaml-modules/janestreet/ppx-variants-conv.nix {}; 5556 + 5557 + ppx_expect = callPackage ../development/ocaml-modules/janestreet/ppx-expect.nix {}; 5556 5558 }; 5557 5559 5558 5560 ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;