mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 08:54:46 +00:00
19 lines
288 B
Nix
19 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";
|
|
};
|
|
|
|
}
|