variantslib: 109.15.03 -> 109.15.03/113.33.03
PPX/P4 split
This commit is contained in:
parent
fc4b5786cd
commit
7ea027862c
@ -1,7 +1,7 @@
|
|||||||
{stdenv, buildOcaml, fetchurl, type_conv,
|
{stdenv, buildOcaml, fetchurl, type_conv,
|
||||||
core_kernel, bin_prot, comparelib, custom_printf, enumerate,
|
core_kernel, bin_prot, comparelib, custom_printf, enumerate,
|
||||||
fieldslib_p4, herelib, pa_bench, pa_test, pa_ounit,
|
fieldslib_p4, herelib, pa_bench, pa_test, pa_ounit,
|
||||||
pipebang, sexplib_p4, typerep_p4, variantslib}:
|
pipebang, sexplib_p4, typerep_p4, variantslib_p4}:
|
||||||
|
|
||||||
buildOcaml rec {
|
buildOcaml rec {
|
||||||
name = "core";
|
name = "core";
|
||||||
@ -19,7 +19,7 @@ buildOcaml rec {
|
|||||||
buildInputs = [ pa_bench pa_test pa_ounit ];
|
buildInputs = [ pa_bench pa_test pa_ounit ];
|
||||||
propagatedBuildInputs = [ type_conv core_kernel bin_prot comparelib
|
propagatedBuildInputs = [ type_conv core_kernel bin_prot comparelib
|
||||||
custom_printf enumerate fieldslib_p4 herelib
|
custom_printf enumerate fieldslib_p4 herelib
|
||||||
pipebang sexplib_p4 typerep_p4 variantslib ];
|
pipebang sexplib_p4 typerep_p4 variantslib_p4 ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/janestreet/core;
|
homepage = https://github.com/janestreet/core;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{stdenv, buildOcaml, fetchurl, type_conv,
|
{stdenv, buildOcaml, fetchurl, type_conv,
|
||||||
bin_prot, comparelib, custom_printf, enumerate,
|
bin_prot, comparelib, custom_printf, enumerate,
|
||||||
fieldslib_p4, herelib, pa_bench, pa_test, pa_ounit,
|
fieldslib_p4, herelib, pa_bench, pa_test, pa_ounit,
|
||||||
pipebang, sexplib_p4, typerep_p4, variantslib}:
|
pipebang, sexplib_p4, typerep_p4, variantslib_p4}:
|
||||||
|
|
||||||
buildOcaml rec {
|
buildOcaml rec {
|
||||||
name = "core_kernel";
|
name = "core_kernel";
|
||||||
@ -19,7 +19,7 @@ buildOcaml rec {
|
|||||||
buildInputs = [ pa_test pa_ounit ];
|
buildInputs = [ pa_test pa_ounit ];
|
||||||
propagatedBuildInputs = [ type_conv pa_bench bin_prot comparelib custom_printf
|
propagatedBuildInputs = [ type_conv pa_bench bin_prot comparelib custom_printf
|
||||||
enumerate fieldslib_p4 herelib pipebang sexplib_p4
|
enumerate fieldslib_p4 herelib pipebang sexplib_p4
|
||||||
typerep_p4 variantslib ];
|
typerep_p4 variantslib_p4 ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/janestreet/core_kernel;
|
homepage = https://github.com/janestreet/core_kernel;
|
||||||
|
19
pkgs/development/ocaml-modules/janestreet/variantslib.nix
Normal file
19
pkgs/development/ocaml-modules/janestreet/variantslib.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{stdenv, buildOcamlJane, type_conv}:
|
||||||
|
|
||||||
|
buildOcamlJane rec {
|
||||||
|
name = "variantslib";
|
||||||
|
version = "113.33.03";
|
||||||
|
|
||||||
|
minimumSupportedOcamlVersion = "4.00";
|
||||||
|
|
||||||
|
hash = "1hv0f75msrryxsl6wfnbmhc0n8kf7qxs5f82ry3b8ldb44s3wigp";
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ type_conv ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/janestreet/variantslib;
|
||||||
|
description = "OCaml variants as first class values";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = [ maintainers.maurer maintainers.ericbmerritt ];
|
||||||
|
};
|
||||||
|
}
|
@ -5487,7 +5487,7 @@ in
|
|||||||
uuseg = callPackage ../development/ocaml-modules/uuseg { };
|
uuseg = callPackage ../development/ocaml-modules/uuseg { };
|
||||||
uutf = callPackage ../development/ocaml-modules/uutf { };
|
uutf = callPackage ../development/ocaml-modules/uutf { };
|
||||||
|
|
||||||
variantslib = callPackage ../development/ocaml-modules/variantslib { };
|
variantslib_p4 = callPackage ../development/ocaml-modules/variantslib { };
|
||||||
|
|
||||||
vg = callPackage ../development/ocaml-modules/vg { };
|
vg = callPackage ../development/ocaml-modules/vg { };
|
||||||
|
|
||||||
@ -5565,6 +5565,8 @@ in
|
|||||||
fieldslib = callPackage ../development/ocaml-modules/janestreet/fieldslib.nix {};
|
fieldslib = callPackage ../development/ocaml-modules/janestreet/fieldslib.nix {};
|
||||||
|
|
||||||
sexplib = callPackage ../development/ocaml-modules/janestreet/sexplib.nix {};
|
sexplib = callPackage ../development/ocaml-modules/janestreet/sexplib.nix {};
|
||||||
|
|
||||||
|
variantslib = callPackage ../development/ocaml-modules/janestreet/variantslib.nix {};
|
||||||
};
|
};
|
||||||
|
|
||||||
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;
|
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;
|
||||||
|
Loading…
Reference in New Issue
Block a user