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