ocamlPackages.ppxfind: 1.3 → 1.4

ocamlPackages.ocaml-migrate-parsetree: 1.5.0 → 1.7.3
This commit is contained in:
Vincent Laporte 2020-05-18 21:26:42 +02:00 committed by Vincent Laporte
parent d84d8e802e
commit 8cbf8116e7
2 changed files with 5 additions and 4 deletions

View File

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

View File

@ -2,13 +2,14 @@
buildDunePackage (rec {
pname = "ppxfind";
version = "1.3";
version = "1.4";
src = fetchurl {
url = "https://github.com/diml/ppxfind/releases/download/${version}/ppxfind-${version}.tbz";
sha256 = "1r4jp0516378js62ss50a9s8ql2pm8lfdd3mnk214hp7s0kb17fl";
sha256 = "0wa9vcrc26kirc2cqqs6kmarbi8gqy3dgdfiv9y7nzsgy1liqacq";
};
minimumOCamlVersion = "4.03";
useDune2 = true;
buildInputs = [ ocaml-migrate-parsetree ];