mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
ppx_type_conv: init at 113.33.03
This commit is contained in:
parent
146609fe59
commit
b87abcb3b6
15
pkgs/development/ocaml-modules/janestreet/ppx-type-conv.nix
Normal file
15
pkgs/development/ocaml-modules/janestreet/ppx-type-conv.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{stdenv, buildOcamlJane,
|
||||
ppx_core, ppx_deriving, ppx_driver, ppx_tools}:
|
||||
|
||||
buildOcamlJane rec {
|
||||
name = "ppx_type_conv";
|
||||
hash = "0gv0mqwn97dwrfm6rj442565y8dz7kiq8s8vadnhywrl7j4znqyq";
|
||||
propagatedBuildInputs =
|
||||
[ ppx_core ppx_deriving ppx_driver ppx_tools ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "The type_conv library factors out functionality needed by different preprocessors that generate code from type specifications.";
|
||||
maintainers = [ maintainers.maurer ];
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
@ -5517,6 +5517,8 @@ in
|
||||
ppx_optcomp = callPackage ../development/ocaml-modules/janestreet/ppx-optcomp.nix {};
|
||||
|
||||
ppx_driver = callPackage ../development/ocaml-modules/janestreet/ppx-driver.nix {};
|
||||
|
||||
ppx_type_conv = callPackage ../development/ocaml-modules/janestreet/ppx-type-conv.nix {};
|
||||
};
|
||||
|
||||
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;
|
||||
|
Loading…
Reference in New Issue
Block a user