nixpkgs-suyu/pkgs/development/ocaml-modules/lens/default.nix

30 lines
717 B
Nix
Raw Normal View History

2021-01-10 18:48:45 +01:00
{ lib, fetchzip, ppx_deriving, ppxfind, buildDunePackage, ounit }:
buildDunePackage rec {
pname = "lens";
2021-01-10 18:48:45 +01:00
version = "1.2.4";
useDune2 = true;
src = fetchzip {
url = "https://github.com/pdonadeo/ocaml-lens/archive/v${version}.tar.gz";
2021-01-10 18:48:45 +01:00
sha256 = "18mv7n5rcix3545mc2qa2f9xngks4g4kqj2g878qj7r3cy96kklv";
};
2021-01-10 18:48:45 +01:00
minimumOCamlVersion = "4.10";
buildInputs = [ ppx_deriving ppxfind ];
2021-01-10 18:48:45 +01:00
doCheck = true;
checkInputs = [ ounit ];
meta = with lib; {
homepage = "https://github.com/pdonadeo/ocaml-lens";
description = "Functional lenses";
license = licenses.bsd3;
maintainers = with maintainers; [
kazcw
];
broken = true; # Not compatible with ppx_deriving ≥ 5.0
};
}