summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/posix/time2.nix
blob: c82da776b8fccb64a31f1a9db4fc165ae6f47da7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildDunePackage, posix-base, posix-types, unix-errno }:

buildDunePackage {
  pname = "posix-time2";

  inherit (posix-base) version src;

  duneVersion = "3";

  propagatedBuildInputs = [ posix-base posix-types unix-errno ];

  doCheck = true;

  meta = posix-base.meta // {
    description = "posix-time2 provides the types and bindings for posix time APIs";
    maintainers = with lib.maintainers; [ dandellion ];
  };
}