17 lines
280 B
Nix
17 lines
280 B
Nix
|
{ lib, buildDunePackage, posix-base }:
|
||
|
|
||
|
buildDunePackage {
|
||
|
pname = "posix-socket";
|
||
|
|
||
|
inherit (posix-base) version src useDune2;
|
||
|
|
||
|
propagatedBuildInputs = [ posix-base ];
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
meta = posix-base.meta // {
|
||
|
description = "Bindings for posix sockets";
|
||
|
};
|
||
|
|
||
|
}
|