ocamlPackages.ppx_import: disable checks
(cherry picked from commit ecf820740a0b576361dac53778a4e6e2e6338287)
This commit is contained in:
parent
93963c27b9
commit
162c4e4e16
|
@ -1,7 +1,6 @@
|
|||
{ lib, fetchurl, buildDunePackage
|
||||
, ppx_tools_versioned
|
||||
, ocaml-migrate-parsetree
|
||||
, ounit, ppx_deriving, ppxlib
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
|
@ -21,9 +20,6 @@ buildDunePackage rec {
|
|||
ppx_tools_versioned ocaml-migrate-parsetree
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
checkInputs = [ ounit ppx_deriving ppxlib ];
|
||||
|
||||
meta = {
|
||||
description = "A syntax extension that allows to pull in types or signatures from other compiled interface files";
|
||||
license = lib.licenses.mit;
|
||||
|
|
|
@ -1081,15 +1081,7 @@ let
|
|||
|
||||
ppx_gen_rec = callPackage ../development/ocaml-modules/ppx_gen_rec {};
|
||||
|
||||
ppx_import = callPackage ../development/ocaml-modules/ppx_import (
|
||||
let ppxlib_0_15 = if lib.versionAtLeast ppxlib.version "0.15"
|
||||
then ppxlib.override { version = "0.15.0"; }
|
||||
else ppxlib; in
|
||||
{
|
||||
ppx_deriving = ppx_deriving.override { ppxlib = ppxlib_0_15; };
|
||||
ppxlib = ppxlib_0_15;
|
||||
}
|
||||
);
|
||||
ppx_import = callPackage ../development/ocaml-modules/ppx_import {};
|
||||
|
||||
ppx_irmin = callPackage ../development/ocaml-modules/irmin/ppx.nix {
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue