ocamlPackages.posix-time2: init at 2.0.0

This commit is contained in:
Daniel Olsen 2021-10-31 04:37:19 +01:00 committed by Vincent Laporte
parent 50cac6ed5e
commit cb26845685
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ lib, buildDunePackage, posix-base, posix-types, unix-errno }:
buildDunePackage {
pname = "posix-time2";
inherit (posix-base) version src;
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 ];
};
}

View file

@ -1129,6 +1129,8 @@ let
posix-socket = callPackage ../development/ocaml-modules/posix/socket.nix { };
posix-time2 = callPackage ../development/ocaml-modules/posix/time2.nix { };
posix-types = callPackage ../development/ocaml-modules/posix/types.nix { };
postgresql = callPackage ../development/ocaml-modules/postgresql {