ocamlPackages.ocaml-migrate-parsetree: 1.7.3 -> 1.8.0

This commit is contained in:
sternenseemann 2020-11-25 14:15:42 +01:00 committed by Vincent Laporte
parent a97cb19b38
commit f8bab20f01
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
3 changed files with 7 additions and 3 deletions

View file

@ -2,13 +2,13 @@
buildDunePackage rec {
pname = "ocaml-migrate-parsetree";
version = "1.7.3";
version = "1.8.0";
src = fetchFromGitHub {
owner = "ocaml-ppx";
repo = pname;
rev = "v${version}";
sha256 = "0336vz0galjnsazbmkxjwdv1qvdqsx2rgrvp778xgq2fzasz45cx";
sha256 = "16x8sxc4ygxrr1868qpzfqyrvjf3hfxvjzmxmf6ibgglq7ixa2nq";
};
propagatedBuildInputs = [ ppx_derivers result ];

View file

@ -6,6 +6,8 @@ buildDunePackage {
pname = "ppx_sqlexpr";
inherit (sqlexpr) version src meta;
minimumOCamlVersion = "4.06";
postPatch = ''
substituteInPlace src/ppx/jbuild --replace ppx_core ppxlib
'';

View file

@ -662,7 +662,9 @@ let
ocaml-lsp = callPackage ../development/ocaml-modules/ocaml-lsp { };
ocaml-migrate-parsetree = callPackage ../development/ocaml-modules/ocaml-migrate-parsetree { };
ocaml-migrate-parsetree = ocaml-migrate-parsetree-1-8;
ocaml-migrate-parsetree-1-8 = callPackage ../development/ocaml-modules/ocaml-migrate-parsetree/1.8.x.nix { };
ocamlmod = callPackage ../development/tools/ocaml/ocamlmod { };