mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 13:47:35 +00:00
ocamlPackages.posix-time2: init at 2.0.0
This commit is contained in:
parent
50cac6ed5e
commit
cb26845685
16
pkgs/development/ocaml-modules/posix/time2.nix
Normal file
16
pkgs/development/ocaml-modules/posix/time2.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user