about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/caqti/type-calendar.nix
blob: d2050e2cf474382e7ad041bc883d83383a1fdd29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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";
  };
}