87f9c27ba9
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
18 lines
293 B
Nix
18 lines
293 B
Nix
{ lib, buildDunePackage, posix-base }:
|
|
|
|
buildDunePackage {
|
|
pname = "posix-socket";
|
|
|
|
inherit (posix-base) version src;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [ posix-base ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = posix-base.meta // {
|
|
description = "Bindings for posix sockets";
|
|
};
|
|
|
|
}
|