tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ppx_typerep_conv: init at 113.33.03
Matthew Maurer
9 years ago
753edce0
4de0724e
+16
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
janestreet
ppx-typerep-conv.nix
top-level
all-packages.nix
+14
pkgs/development/ocaml-modules/janestreet/ppx-typerep-conv.nix
···
1
1
+
{stdenv, buildOcamlJane,
2
2
+
ppx_core, ppx_tools, ppx_type_conv, typerep}:
3
3
+
4
4
+
buildOcamlJane rec {
5
5
+
name = "ppx_typerep_conv";
6
6
+
hash = "0dldlx73r07j6w0i7h4hxly0v678naa79na5rafsk2974gs5ih9g";
7
7
+
propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv typerep ];
8
8
+
9
9
+
meta = with stdenv.lib; {
10
10
+
description = "Automatic generation of runtime types from type definitions";
11
11
+
maintainers = [ maintainers.maurer ];
12
12
+
license = licenses.asl20;
13
13
+
};
14
14
+
}
+2
pkgs/top-level/all-packages.nix
···
5549
5549
ppx_sexp_message = callPackage ../development/ocaml-modules/janestreet/ppx-sexp-message.nix {};
5550
5550
5551
5551
ppx_sexp_value = callPackage ../development/ocaml-modules/janestreet/ppx-sexp-value.nix {};
5552
5552
+
5553
5553
+
ppx_typerep_conv = callPackage ../development/ocaml-modules/janestreet/ppx-typerep-conv.nix {};
5552
5554
};
5553
5555
5554
5556
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;