summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/caqti/type-calendar.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/caqti/type-calendar.nix')
-rw-r--r--pkgs/development/ocaml-modules/caqti/type-calendar.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/caqti/type-calendar.nix b/pkgs/development/ocaml-modules/caqti/type-calendar.nix
new file mode 100644
index 000000000000..d2050e2cf474
--- /dev/null
+++ b/pkgs/development/ocaml-modules/caqti/type-calendar.nix
@@ -0,0 +1,14 @@
+{ lib, buildDunePackage, calendar, caqti }:
+
+buildDunePackage {
+ pname = "caqti-type-calendar";
+ version = "1.2.0";
+ useDune2 = true;
+ inherit (caqti) src;
+
+ propagatedBuildInputs = [ calendar caqti ];
+
+ meta = caqti.meta // {
+ description = "Date and time field types using the calendar library";
+ };
+}