405fec7427
ocamlPackages.posix-errno: init at 4.0.2 ocamlPackages.srt: 0.3.3 → 0.3.4
27 lines
437 B
Nix
27 lines
437 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
posix-base,
|
|
posix-types,
|
|
posix-errno,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "posix-time2";
|
|
|
|
inherit (posix-base) version src;
|
|
|
|
propagatedBuildInputs = [
|
|
posix-base
|
|
posix-types
|
|
posix-errno
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = posix-base.meta // {
|
|
description = "Posix-time2 provides the types and bindings for posix time APIs";
|
|
maintainers = with lib.maintainers; [ dandellion ];
|
|
};
|
|
}
|