ocamlPackages.pgocaml: 4.2.2-dev-20210111 → 4.3.0

This commit is contained in:
Vincent Laporte 2023-03-18 08:03:30 +01:00
parent 088089e8e0
commit eacf840bca
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
2 changed files with 10 additions and 7 deletions

View file

@ -4,16 +4,16 @@
buildDunePackage rec { buildDunePackage rec {
pname = "pgocaml"; pname = "pgocaml";
version = "4.2.2-dev-20210111"; version = "4.3.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "darioteixeira"; owner = "darioteixeira";
repo = "pgocaml"; repo = "pgocaml";
rev = "1bb0025deeb3d14029afdcc69aaa7847026e243e"; rev = version;
sha256 = "11inbjf87gclc2xmpq56ag4cm4467y9q9hjgbdn69fa1bman2zn2"; hash = "sha256-W1fbRnU1l61qqxfVY2qiBnVpGD81xrBO8k0tWr+RXMY=";
}; };
minimumOCamlVersion = "4.08"; minimalOCamlVersion = "4.08";
useDune2 = true; duneVersion = "3";
propagatedBuildInputs = [ calendar csv hex ppx_deriving ppx_sexp_conv re rresult sexplib ]; propagatedBuildInputs = [ calendar csv hex ppx_deriving ppx_sexp_conv re rresult sexplib ];

View file

@ -2,7 +2,10 @@
buildDunePackage { buildDunePackage {
pname = "pgocaml_ppx"; pname = "pgocaml_ppx";
inherit (pgocaml) src version useDune2 meta; inherit (pgocaml) src version meta;
propagatedBuildInputs = [ pgocaml ppx_optcomp ]; duneVersion = "3";
buildInputs = [ ppx_optcomp ];
propagatedBuildInputs = [ pgocaml ];
} }