f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
18 lines
288 B
Nix
18 lines
288 B
Nix
{ 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";
|
|
};
|
|
|
|
}
|