Files
2026-01-31 14:37:03 +00:00

29 lines
600 B
Nix

{
lib,
buildDunePackage,
fetchFromGitHub,
re,
}:
buildDunePackage (finalAttrs: {
pname = "calendar";
version = "3.0.0";
minimalOCamlVersion = "4.03";
src = fetchFromGitHub {
owner = "ocaml-community";
repo = "calendar";
rev = "v${finalAttrs.version}";
sha256 = "sha256-+VQzi6pEMqzV1ZR84Yjdu4jsJEWtx+7bd6PQGX7TiEs=";
};
propagatedBuildInputs = [ re ];
meta = {
inherit (finalAttrs.src.meta) homepage;
description = "Library for handling dates and times";
license = lib.licenses.lgpl21Plus;
maintainers = [ lib.maintainers.gal_bolle ];
};
})