about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-01-01 15:33:02 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2021-01-04 22:10:08 +0100
commita080e9b9ff0a41ea90aec7b97566297406a71eec (patch)
tree3047cd37fa5b32072d6b0bbd33a3ec8074819bf4 /pkgs/development/ocaml-modules
parent2e8cc1cddd980f95d7caff090f673141076fb8ab (diff)
downloadnixlib-a080e9b9ff0a41ea90aec7b97566297406a71eec.tar
nixlib-a080e9b9ff0a41ea90aec7b97566297406a71eec.tar.gz
nixlib-a080e9b9ff0a41ea90aec7b97566297406a71eec.tar.bz2
nixlib-a080e9b9ff0a41ea90aec7b97566297406a71eec.tar.lz
nixlib-a080e9b9ff0a41ea90aec7b97566297406a71eec.tar.xz
nixlib-a080e9b9ff0a41ea90aec7b97566297406a71eec.tar.zst
nixlib-a080e9b9ff0a41ea90aec7b97566297406a71eec.zip
ocamlPackages.ppx_import: use dependencies as listed in opam file
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/ppx_import/default.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/ppx_import/default.nix b/pkgs/development/ocaml-modules/ppx_import/default.nix
index f4977992759d..b5651a8cec2a 100644
--- a/pkgs/development/ocaml-modules/ppx_import/default.nix
+++ b/pkgs/development/ocaml-modules/ppx_import/default.nix
@@ -1,24 +1,27 @@
 { lib, fetchurl, buildDunePackage, ocaml
 , ounit, ppx_deriving, ppx_tools_versioned
+, ppxlib, ocaml-migrate-parsetree
 }:
 
-if !lib.versionAtLeast ocaml.version "4.04"
-then throw "ppx_import is not available for OCaml ${ocaml.version}"
-else
-
 buildDunePackage rec {
   pname = "ppx_import";
   version = "1.7.1";
 
+  useDune2 = true;
+
+  minimumOCamlVersion = "4.04";
+
   src = fetchurl {
     url = "https://github.com/ocaml-ppx/ppx_import/releases/download/v${version}/ppx_import-v${version}.tbz";
     sha256 = "16dyxfb7syz659rqa7yq36ny5vzl7gkqd7f4m6qm2zkjc1gc8j4v";
   };
 
-  buildInputs = [ ounit ppx_deriving ];
-  propagatedBuildInputs = [ ppx_tools_versioned ];
+  propagatedBuildInputs = [
+    ppxlib ppx_tools_versioned ocaml-migrate-parsetree
+  ];
 
   doCheck = true;
+  checkInputs = [ ounit ppx_deriving ];
 
   meta = {
     description = "A syntax extension that allows to pull in types or signatures from other compiled interface files";