405fec7427
ocamlPackages.posix-errno: init at 4.0.2 ocamlPackages.srt: 0.3.3 → 0.3.4
25 lines
365 B
Nix
25 lines
365 B
Nix
{
|
|
buildDunePackage,
|
|
posix-base,
|
|
dune-configurator,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "posix-socket";
|
|
|
|
inherit (posix-base) version src;
|
|
|
|
minimalOCamlVersion = "4.12";
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
|
|
propagatedBuildInputs = [ posix-base ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = posix-base.meta // {
|
|
description = "Bindings for posix sockets";
|
|
};
|
|
|
|
}
|