2022-06-16 17:23:12 +00:00
|
|
|
{ lib, buildDunePackage, posix-base, posix-types, unix-errno }:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "posix-time2";
|
|
|
|
|
|
|
|
inherit (posix-base) version src;
|
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
duneVersion = "3";
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|