ocamlPackages.lens: 1.2.4 → 1.2.5

This commit is contained in:
Vincent Laporte 2021-07-30 07:49:50 +02:00 committed by Vincent Laporte
parent 308c004ace
commit 9c0a584a28

View file

@ -1,18 +1,20 @@
{ lib, fetchzip, ppx_deriving, ppxfind, buildDunePackage, ounit }: { lib, fetchFromGitHub, ppx_deriving, ppxlib, buildDunePackage, ounit }:
buildDunePackage rec { buildDunePackage rec {
pname = "lens"; pname = "lens";
version = "1.2.4"; version = "1.2.5";
useDune2 = true; useDune2 = true;
src = fetchzip { src = fetchFromGitHub {
url = "https://github.com/pdonadeo/ocaml-lens/archive/v${version}.tar.gz"; owner = "pdonadeo";
sha256 = "18mv7n5rcix3545mc2qa2f9xngks4g4kqj2g878qj7r3cy96kklv"; repo = "ocaml-lens";
rev = "v${version}";
sha256 = "1k23n7pa945fk6nbaq6nlkag5kg97wsw045ghz4gqp8b9i2im3vn";
}; };
minimumOCamlVersion = "4.10"; minimalOCamlVersion = "4.10";
buildInputs = [ ppx_deriving ppxfind ]; buildInputs = [ ppx_deriving ppxlib ];
doCheck = true; doCheck = true;
checkInputs = [ ounit ]; checkInputs = [ ounit ];
@ -24,6 +26,5 @@ buildDunePackage rec {
maintainers = with maintainers; [ maintainers = with maintainers; [
kazcw kazcw
]; ];
broken = true; # Not compatible with ppx_deriving ≥ 5.0
}; };
} }