ocamlPackages.ppx_import: 1.7.1 → 1.8.0

This commit is contained in:
Vincent Laporte 2021-03-12 18:00:28 +01:00 committed by Vincent Laporte
parent dd503734f0
commit 1bb03d47cd
1 changed files with 9 additions and 8 deletions

View File

@ -1,27 +1,28 @@
{ lib, fetchurl, buildDunePackage, ocaml { lib, fetchurl, buildDunePackage
, ounit, ppx_deriving, ppx_tools_versioned , ppx_tools_versioned
, ppxlib, ocaml-migrate-parsetree , ocaml-migrate-parsetree
, ounit, ppx_deriving, ppxlib
}: }:
buildDunePackage rec { buildDunePackage rec {
pname = "ppx_import"; pname = "ppx_import";
version = "1.7.1"; version = "1.8.0";
useDune2 = true; useDune2 = true;
minimumOCamlVersion = "4.04"; minimumOCamlVersion = "4.04";
src = fetchurl { src = fetchurl {
url = "https://github.com/ocaml-ppx/ppx_import/releases/download/v${version}/ppx_import-v${version}.tbz"; url = "https://github.com/ocaml-ppx/ppx_import/releases/download/v${version}/ppx_import-${version}.tbz";
sha256 = "16dyxfb7syz659rqa7yq36ny5vzl7gkqd7f4m6qm2zkjc1gc8j4v"; sha256 = "0zqcj70yyp4ik4jc6jz3qs2xhb94vxc6yq9ij0d5cyak28klc3gv";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
ppxlib ppx_tools_versioned ocaml-migrate-parsetree ppx_tools_versioned ocaml-migrate-parsetree
]; ];
doCheck = true; doCheck = true;
checkInputs = [ ounit ppx_deriving ]; checkInputs = [ ounit ppx_deriving ppxlib ];
meta = { meta = {
description = "A syntax extension that allows to pull in types or signatures from other compiled interface files"; description = "A syntax extension that allows to pull in types or signatures from other compiled interface files";