nixpkgs/pkgs/development/ocaml-modules/caqti/type-calendar.nix
2023-04-05 08:43:21 +02:00

15 lines
304 B
Nix

{ lib, buildDunePackage, calendar, caqti }:
buildDunePackage {
pname = "caqti-type-calendar";
inherit (caqti) src version;
duneVersion = "3";
propagatedBuildInputs = [ calendar caqti ];
meta = caqti.meta // {
description = "Date and time field types using the calendar library";
};
}