repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
caqti
/
type-calendar.nix
blob
d2050e2cf474382e7ad041bc883d83383a1fdd29
1
{ lib, buildDunePackage, calendar, caqti }:
2
3
buildDunePackage {
4
pname = "caqti-type-calendar";
5
version = "1.2.0";
6
useDune2 = true;
7
inherit (caqti) src;
8
9
propagatedBuildInputs = [ calendar caqti ];
10
11
meta = caqti.meta // {
12
description = "Date and time field types using the calendar library";
13
};
14
}