From 68998dca58900a89eb63ce3931227cfa5a0eccf0 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sun, 26 Feb 2017 16:03:43 +0000 Subject: ocamlPackages.ppx_bin_prot: init at 113.33.00+4.03 --- .../janestreet/ppx_bin_prot-113_33_00.nix | 21 +++++++++++++++++++++ pkgs/top-level/ocaml-packages.nix | 5 ++++- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/ocaml-modules/janestreet/ppx_bin_prot-113_33_00.nix (limited to 'pkgs') diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_bin_prot-113_33_00.nix b/pkgs/development/ocaml-modules/janestreet/ppx_bin_prot-113_33_00.nix new file mode 100644 index 000000000000..43517a82d3b2 --- /dev/null +++ b/pkgs/development/ocaml-modules/janestreet/ppx_bin_prot-113_33_00.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg +, bin_prot, ppx_deriving, ppx_tools, ppx_type_conv +}: + +stdenv.mkDerivation { + name = "ocaml${ocaml.version}-ppx_bin_prot-113.33.00+4.03"; + src = fetchurl { + url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_bin_prot-113.33.00+4.03.tar.gz; + sha256 = "1xw1yjgnd5ny1cq0n6rbsdaywyzq2n0jwg4gjsxv14dhv0alav36"; + }; + + buildInputs = [ ocaml findlib ocamlbuild opam ppx_tools ]; + propagatedBuildInputs = [ bin_prot ppx_deriving ppx_type_conv ]; + + inherit (topkg) installPhase; + + meta = { + license = stdenv.lib.licenses.asl20; + inherit (ocaml.meta) platforms; + }; +} diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index 9b38985c7af9..b27609553262 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -593,7 +593,10 @@ let then callPackage ../development/ocaml-modules/janestreet/ppx_bench-113_33_00.nix {} else callPackage ../development/ocaml-modules/janestreet/ppx-bench.nix {}; - ppx_bin_prot = callPackage ../development/ocaml-modules/janestreet/ppx-bin-prot.nix {}; + ppx_bin_prot = + if lib.versionOlder "4.03" ocaml.version + then callPackage ../development/ocaml-modules/janestreet/ppx_bin_prot-113_33_00.nix {} + else callPackage ../development/ocaml-modules/janestreet/ppx-bin-prot.nix {}; ppx_custom_printf = if lib.versionOlder "4.03" ocaml.version -- cgit 1.4.1