biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / posix / time2.nix
blobc82da776b8fccb64a31f1a9db4fc165ae6f47da7
1 { lib, buildDunePackage, posix-base, posix-types, unix-errno }:
3 buildDunePackage {
4   pname = "posix-time2";
6   inherit (posix-base) version src;
8   duneVersion = "3";
10   propagatedBuildInputs = [ posix-base posix-types unix-errno ];
12   doCheck = true;
14   meta = posix-base.meta // {
15     description = "posix-time2 provides the types and bindings for posix time APIs";
16     maintainers = with lib.maintainers; [ dandellion ];
17   };